diff --git a/corpus/macros.txt b/corpus/macros.txt index d995dffb..5d26b420 100644 --- a/corpus/macros.txt +++ b/corpus/macros.txt @@ -51,6 +51,11 @@ a!('\u{0}'..='\u{2}'); a!('lifetime) default!(a); union!(a); +a!($); +a!($()); +a!($ a $); +a!(${$([ a ])}); +a!($a $a:ident $($a);*); -------------------------------------------------------------------------------- @@ -101,7 +106,32 @@ union!(a); (macro_invocation (identifier) (token_tree - (identifier))))) + (identifier)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree))) + (expression_statement + (macro_invocation + (identifier) + (token_tree (token_tree)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree (identifier)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree (token_tree (token_tree (token_tree (identifier))))))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (identifier) + (identifier) + (identifier) + (token_tree + (identifier)))))) ================================================================================ Macro invocation with comments diff --git a/grammar.js b/grammar.js index 0620a009..53ff0b80 100644 --- a/grammar.js +++ b/grammar.js @@ -150,6 +150,7 @@ module.exports = grammar({ $.token_tree_pattern, $.token_repetition_pattern, $.token_binding_pattern, + $.metavariable, $._non_special_token ), @@ -177,6 +178,7 @@ module.exports = grammar({ _tokens: $ => choice( $.token_tree, $.token_repetition, + $.metavariable, $._non_special_token ), @@ -190,8 +192,11 @@ module.exports = grammar({ '$', '(', repeat($._tokens), ')', optional(/[^+*?]+/), choice('+', '*', '?') ), + // Matches non-delimiter tokens common to both macro invocations and + // definitions. This is everything except $ and metavariables (which begin + // with $). _non_special_token: $ => choice( - $._literal, $.identifier, $.metavariable, $.mutable_specifier, $.self, $.super, $.crate, + $._literal, $.identifier, $.mutable_specifier, $.self, $.super, $.crate, alias(choice(...primitive_types), $.primitive_type), /[/_\-=->,;:::!=?.@*&#%^+<>|~]+/, '\'', @@ -891,7 +896,24 @@ module.exports = grammar({ $._reserved_identifier, )), '!', - $.token_tree + alias($.delim_token_tree, $.token_tree) + ), + + delim_token_tree: $ => choice( + seq('(', repeat($._delim_tokens), ')'), + seq('[', repeat($._delim_tokens), ']'), + seq('{', repeat($._delim_tokens), '}') + ), + + _delim_tokens: $ => choice( + $._non_delim_token, + alias($.delim_token_tree, $.token_tree), + ), + + // Should match any token other than a delimiter. + _non_delim_token: $ => choice( + $._non_special_token, + '$' ), scoped_identifier: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index adcaaf4b..6e3ffde4 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -308,6 +308,10 @@ "type": "SYMBOL", "name": "token_binding_pattern" }, + { + "type": "SYMBOL", + "name": "metavariable" + }, { "type": "SYMBOL", "name": "_non_special_token" @@ -529,6 +533,10 @@ "type": "SYMBOL", "name": "token_repetition" }, + { + "type": "SYMBOL", + "name": "metavariable" + }, { "type": "SYMBOL", "name": "_non_special_token" @@ -664,10 +672,6 @@ "type": "SYMBOL", "name": "identifier" }, - { - "type": "SYMBOL", - "name": "metavariable" - }, { "type": "SYMBOL", "name": "mutable_specifier" @@ -4927,9 +4931,110 @@ "type": "STRING", "value": "!" }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "token_tree" + } + ] + }, + "delim_token_tree": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + } + ] + }, + "_delim_tokens": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_non_delim_token" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "token_tree" + } + ] + }, + "_non_delim_token": { + "type": "CHOICE", + "members": [ { "type": "SYMBOL", - "name": "token_tree" + "name": "_non_special_token" + }, + { + "type": "STRING", + "value": "$" } ] }, diff --git a/src/parser.c b/src/parser.c index 948ddf41..2b569952 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2544 -#define LARGE_STATE_COUNT 628 -#define SYMBOL_COUNT 316 +#define STATE_COUNT 2567 +#define LARGE_STATE_COUNT 647 +#define SYMBOL_COUNT 320 #define ALIAS_COUNT 3 #define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 4 @@ -238,103 +238,107 @@ enum { sym__expression_except_range = 219, sym__expression = 220, sym_macro_invocation = 221, - sym_scoped_identifier = 222, - sym_scoped_type_identifier_in_expression_position = 223, - sym_scoped_type_identifier = 224, - sym_range_expression = 225, - sym_unary_expression = 226, - sym_try_expression = 227, - sym_reference_expression = 228, - sym_binary_expression = 229, - sym_assignment_expression = 230, - sym_compound_assignment_expr = 231, - sym_type_cast_expression = 232, - sym_return_expression = 233, - sym_yield_expression = 234, - sym_call_expression = 235, - sym_arguments = 236, - sym_array_expression = 237, - sym_parenthesized_expression = 238, - sym_tuple_expression = 239, - sym_unit_expression = 240, - sym_struct_expression = 241, - sym_field_initializer_list = 242, - sym_shorthand_field_initializer = 243, - sym_field_initializer = 244, - sym_base_field_initializer = 245, - sym_if_expression = 246, - sym_if_let_expression = 247, - sym_else_clause = 248, - sym_match_expression = 249, - sym_match_block = 250, - sym_match_arm = 251, - sym_last_match_arm = 252, - sym_match_pattern = 253, - sym_while_expression = 254, - sym_while_let_expression = 255, - sym_loop_expression = 256, - sym_for_expression = 257, - sym_const_block = 258, - sym_closure_expression = 259, - sym_closure_parameters = 260, - sym_loop_label = 261, - sym_break_expression = 262, - sym_continue_expression = 263, - sym_index_expression = 264, - sym_await_expression = 265, - sym_field_expression = 266, - sym_unsafe_block = 267, - sym_async_block = 268, - sym_block = 269, - sym__pattern = 270, - sym_tuple_pattern = 271, - sym_slice_pattern = 272, - sym_tuple_struct_pattern = 273, - sym_struct_pattern = 274, - sym_field_pattern = 275, - sym_remaining_field_pattern = 276, - sym_mut_pattern = 277, - sym_range_pattern = 278, - sym_ref_pattern = 279, - sym_captured_pattern = 280, - sym_reference_pattern = 281, - sym_or_pattern = 282, - sym__literal = 283, - sym__literal_pattern = 284, - sym_negative_literal = 285, - sym_string_literal = 286, - sym_boolean_literal = 287, - aux_sym_source_file_repeat1 = 288, - aux_sym_macro_definition_repeat1 = 289, - aux_sym_token_tree_pattern_repeat1 = 290, - aux_sym_token_tree_repeat1 = 291, - aux_sym_meta_arguments_repeat1 = 292, - aux_sym_declaration_list_repeat1 = 293, - aux_sym_enum_variant_list_repeat1 = 294, - aux_sym_enum_variant_list_repeat2 = 295, - aux_sym_field_declaration_list_repeat1 = 296, - aux_sym_ordered_field_declaration_list_repeat1 = 297, - aux_sym_function_modifiers_repeat1 = 298, - aux_sym_where_clause_repeat1 = 299, - aux_sym_trait_bounds_repeat1 = 300, - aux_sym_type_parameters_repeat1 = 301, - aux_sym_use_list_repeat1 = 302, - aux_sym_parameters_repeat1 = 303, - aux_sym_for_lifetimes_repeat1 = 304, - aux_sym_tuple_type_repeat1 = 305, - aux_sym_type_arguments_repeat1 = 306, - aux_sym_arguments_repeat1 = 307, - aux_sym_array_expression_repeat1 = 308, - aux_sym_tuple_expression_repeat1 = 309, - aux_sym_field_initializer_list_repeat1 = 310, - aux_sym_match_block_repeat1 = 311, - aux_sym_closure_parameters_repeat1 = 312, - aux_sym_tuple_pattern_repeat1 = 313, - aux_sym_struct_pattern_repeat1 = 314, - aux_sym_string_literal_repeat1 = 315, - alias_sym_field_identifier = 316, - alias_sym_shorthand_field_identifier = 317, - alias_sym_type_identifier = 318, + sym_delim_token_tree = 222, + sym__delim_tokens = 223, + sym__non_delim_token = 224, + sym_scoped_identifier = 225, + sym_scoped_type_identifier_in_expression_position = 226, + sym_scoped_type_identifier = 227, + sym_range_expression = 228, + sym_unary_expression = 229, + sym_try_expression = 230, + sym_reference_expression = 231, + sym_binary_expression = 232, + sym_assignment_expression = 233, + sym_compound_assignment_expr = 234, + sym_type_cast_expression = 235, + sym_return_expression = 236, + sym_yield_expression = 237, + sym_call_expression = 238, + sym_arguments = 239, + sym_array_expression = 240, + sym_parenthesized_expression = 241, + sym_tuple_expression = 242, + sym_unit_expression = 243, + sym_struct_expression = 244, + sym_field_initializer_list = 245, + sym_shorthand_field_initializer = 246, + sym_field_initializer = 247, + sym_base_field_initializer = 248, + sym_if_expression = 249, + sym_if_let_expression = 250, + sym_else_clause = 251, + sym_match_expression = 252, + sym_match_block = 253, + sym_match_arm = 254, + sym_last_match_arm = 255, + sym_match_pattern = 256, + sym_while_expression = 257, + sym_while_let_expression = 258, + sym_loop_expression = 259, + sym_for_expression = 260, + sym_const_block = 261, + sym_closure_expression = 262, + sym_closure_parameters = 263, + sym_loop_label = 264, + sym_break_expression = 265, + sym_continue_expression = 266, + sym_index_expression = 267, + sym_await_expression = 268, + sym_field_expression = 269, + sym_unsafe_block = 270, + sym_async_block = 271, + sym_block = 272, + sym__pattern = 273, + sym_tuple_pattern = 274, + sym_slice_pattern = 275, + sym_tuple_struct_pattern = 276, + sym_struct_pattern = 277, + sym_field_pattern = 278, + sym_remaining_field_pattern = 279, + sym_mut_pattern = 280, + sym_range_pattern = 281, + sym_ref_pattern = 282, + sym_captured_pattern = 283, + sym_reference_pattern = 284, + sym_or_pattern = 285, + sym__literal = 286, + sym__literal_pattern = 287, + sym_negative_literal = 288, + sym_string_literal = 289, + sym_boolean_literal = 290, + aux_sym_source_file_repeat1 = 291, + aux_sym_macro_definition_repeat1 = 292, + aux_sym_token_tree_pattern_repeat1 = 293, + aux_sym_token_tree_repeat1 = 294, + aux_sym_meta_arguments_repeat1 = 295, + aux_sym_declaration_list_repeat1 = 296, + aux_sym_enum_variant_list_repeat1 = 297, + aux_sym_enum_variant_list_repeat2 = 298, + aux_sym_field_declaration_list_repeat1 = 299, + aux_sym_ordered_field_declaration_list_repeat1 = 300, + aux_sym_function_modifiers_repeat1 = 301, + aux_sym_where_clause_repeat1 = 302, + aux_sym_trait_bounds_repeat1 = 303, + aux_sym_type_parameters_repeat1 = 304, + aux_sym_use_list_repeat1 = 305, + aux_sym_parameters_repeat1 = 306, + aux_sym_for_lifetimes_repeat1 = 307, + aux_sym_tuple_type_repeat1 = 308, + aux_sym_type_arguments_repeat1 = 309, + aux_sym_delim_token_tree_repeat1 = 310, + aux_sym_arguments_repeat1 = 311, + aux_sym_array_expression_repeat1 = 312, + aux_sym_tuple_expression_repeat1 = 313, + aux_sym_field_initializer_list_repeat1 = 314, + aux_sym_match_block_repeat1 = 315, + aux_sym_closure_parameters_repeat1 = 316, + aux_sym_tuple_pattern_repeat1 = 317, + aux_sym_struct_pattern_repeat1 = 318, + aux_sym_string_literal_repeat1 = 319, + alias_sym_field_identifier = 320, + alias_sym_shorthand_field_identifier = 321, + alias_sym_type_identifier = 322, }; static const char * const ts_symbol_names[] = { @@ -560,6 +564,9 @@ static const char * const ts_symbol_names[] = { [sym__expression_except_range] = "_expression_except_range", [sym__expression] = "_expression", [sym_macro_invocation] = "macro_invocation", + [sym_delim_token_tree] = "token_tree", + [sym__delim_tokens] = "_delim_tokens", + [sym__non_delim_token] = "_non_delim_token", [sym_scoped_identifier] = "scoped_identifier", [sym_scoped_type_identifier_in_expression_position] = "scoped_type_identifier", [sym_scoped_type_identifier] = "scoped_type_identifier", @@ -645,6 +652,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_for_lifetimes_repeat1] = "for_lifetimes_repeat1", [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", + [aux_sym_delim_token_tree_repeat1] = "delim_token_tree_repeat1", [aux_sym_arguments_repeat1] = "arguments_repeat1", [aux_sym_array_expression_repeat1] = "array_expression_repeat1", [aux_sym_tuple_expression_repeat1] = "tuple_expression_repeat1", @@ -882,6 +890,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__expression_except_range] = sym__expression_except_range, [sym__expression] = sym__expression, [sym_macro_invocation] = sym_macro_invocation, + [sym_delim_token_tree] = sym_token_tree, + [sym__delim_tokens] = sym__delim_tokens, + [sym__non_delim_token] = sym__non_delim_token, [sym_scoped_identifier] = sym_scoped_identifier, [sym_scoped_type_identifier_in_expression_position] = sym_scoped_type_identifier, [sym_scoped_type_identifier] = sym_scoped_type_identifier, @@ -967,6 +978,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_for_lifetimes_repeat1] = aux_sym_for_lifetimes_repeat1, [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, + [aux_sym_delim_token_tree_repeat1] = aux_sym_delim_token_tree_repeat1, [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, [aux_sym_array_expression_repeat1] = aux_sym_array_expression_repeat1, [aux_sym_tuple_expression_repeat1] = aux_sym_tuple_expression_repeat1, @@ -1872,6 +1884,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_delim_token_tree] = { + .visible = true, + .named = true, + }, + [sym__delim_tokens] = { + .visible = false, + .named = true, + }, + [sym__non_delim_token] = { + .visible = false, + .named = true, + }, [sym_scoped_identifier] = { .visible = true, .named = true, @@ -2215,6 +2239,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_delim_token_tree_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_arguments_repeat1] = { .visible = false, .named = false, @@ -9984,789 +10012,814 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (eof) ADVANCE(59); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '"') ADVANCE(150); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(73); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(113); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '@') ADVANCE(139); + if (lookahead == '[') ADVANCE(67); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(56) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(168); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '\'') ADVANCE(87); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(113); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '"') ADVANCE(150); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '\'') ADVANCE(87); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '&') ADVANCE(103); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(80); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(114); + if (lookahead == '.') ADVANCE(21); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(31); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(109); - if (lookahead == '.') ADVANCE(21); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '[') ADVANCE(66); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '&') ADVANCE(103); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(80); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(111); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(31); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '[') ADVANCE(67); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '&') ADVANCE(103); + if (lookahead == '\'') ADVANCE(87); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(80); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(33); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '\'') ADVANCE(87); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(100); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '@') ADVANCE(137); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '@') ADVANCE(139); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(70); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '$') ADVANCE(73); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '/') ADVANCE(83); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(71); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '_') ADVANCE(84); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '$') ADVANCE(73); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '/') ADVANCE(83); + if (lookahead == '0') ADVANCE(144); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '_') ADVANCE(84); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == 'b') ADVANCE(154); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '$') ADVANCE(72); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '/') ADVANCE(83); + if (lookahead == '0') ADVANCE(144); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '_') ADVANCE(84); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (('!' <= lookahead && lookahead <= '@') || + lookahead == '^' || + ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); END_STATE(); case 14: - if (lookahead == '#') ADVANCE(87); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == '<') ADVANCE(96); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(92); + if (lookahead == 'b') ADVANCE(156); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 15: - if (lookahead == '\'') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '.') ADVANCE(21); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(69); + if (lookahead == '<') ADVANCE(98); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '}') ADVANCE(65); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(15) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 16: - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); - if (lookahead != 0) ADVANCE(15); + if (lookahead == '\'') ADVANCE(151); END_STATE(); case 17: - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(17) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (lookahead == '\'') ADVANCE(151); + if (lookahead == '\\') ADVANCE(37); + if (lookahead != 0) ADVANCE(16); END_STATE(); case 18: - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '?') ADVANCE(80); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(80); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(33); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(100); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(73); - if (lookahead != 0) ADVANCE(75); + lookahead == ' ') SKIP(18) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 19: - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); + if (lookahead == '*') ADVANCE(80); + if (lookahead == '+') ADVANCE(78); + if (lookahead == '/') ADVANCE(76); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(75); + if (lookahead != 0) ADVANCE(77); END_STATE(); case 20: if (lookahead == '.') ADVANCE(105); + if (lookahead == '=') ADVANCE(110); END_STATE(); case 21: - if (lookahead == '.') ADVANCE(106); + if (lookahead == '.') ADVANCE(107); END_STATE(); case 22: - if (lookahead == '.') ADVANCE(19); + if (lookahead == '.') ADVANCE(108); END_STATE(); case 23: - if (lookahead == '/') ADVANCE(151); + if (lookahead == '.') ADVANCE(20); END_STATE(); case 24: - if (lookahead == '1') ADVANCE(26); - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); - if (lookahead == '8') ADVANCE(138); - if (lookahead == 's') ADVANCE(34); + if (lookahead == '/') ADVANCE(153); END_STATE(); case 25: - if (lookahead == '2') ADVANCE(138); + if (lookahead == '1') ADVANCE(27); + if (lookahead == '3') ADVANCE(26); + if (lookahead == '6') ADVANCE(29); + if (lookahead == '8') ADVANCE(140); + if (lookahead == 's') ADVANCE(35); END_STATE(); case 26: - if (lookahead == '2') ADVANCE(29); - if (lookahead == '6') ADVANCE(138); + if (lookahead == '2') ADVANCE(140); END_STATE(); case 27: - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); + if (lookahead == '2') ADVANCE(30); + if (lookahead == '6') ADVANCE(140); END_STATE(); case 28: - if (lookahead == '4') ADVANCE(138); + if (lookahead == '3') ADVANCE(26); + if (lookahead == '6') ADVANCE(29); END_STATE(); case 29: - if (lookahead == '8') ADVANCE(138); + if (lookahead == '4') ADVANCE(140); END_STATE(); case 30: - if (lookahead == ':') ADVANCE(100); + if (lookahead == '8') ADVANCE(140); END_STATE(); case 31: - if (lookahead == '=') ADVANCE(119); + if (lookahead == ':') ADVANCE(102); END_STATE(); case 32: - if (lookahead == '>') ADVANCE(95); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 33: - if (lookahead == 'e') ADVANCE(138); + if (lookahead == '>') ADVANCE(97); END_STATE(); case 34: - if (lookahead == 'i') ADVANCE(37); + if (lookahead == 'e') ADVANCE(140); END_STATE(); case 35: - if (lookahead == 'u') ADVANCE(38); - if (lookahead == 'x') ADVANCE(49); - if (lookahead != 0) ADVANCE(150); + if (lookahead == 'i') ADVANCE(38); END_STATE(); case 36: if (lookahead == 'u') ADVANCE(39); if (lookahead == 'x') ADVANCE(50); - if (lookahead != 0) ADVANCE(15); + if (lookahead != 0) ADVANCE(152); END_STATE(); case 37: - if (lookahead == 'z') ADVANCE(33); + if (lookahead == 'u') ADVANCE(40); + if (lookahead == 'x') ADVANCE(51); + if (lookahead != 0) ADVANCE(16); END_STATE(); case 38: - if (lookahead == '{') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + if (lookahead == 'z') ADVANCE(34); END_STATE(); case 39: if (lookahead == '{') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); case 40: - if (lookahead == '}') ADVANCE(15); + if (lookahead == '{') ADVANCE(49); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); END_STATE(); case 41: - if (lookahead == '}') ADVANCE(150); + if (lookahead == '}') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); END_STATE(); case 42: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(143); + if (lookahead == '}') ADVANCE(152); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 43: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(145); END_STATE(); case 44: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(15); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(146); END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(16); END_STATE(); case 46: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 47: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(152); END_STATE(); case 48: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 49: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); END_STATE(); case 50: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); END_STATE(); case 51: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); case 52: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); END_STATE(); case 53: - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(148); END_STATE(); case 54: - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); END_STATE(); case 55: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 56: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (eof) ADVANCE(59); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(73); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(113); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '@') ADVANCE(139); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 57: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); + if (eof) ADVANCE(59); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(57) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 58: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(59); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '&') ADVANCE(103); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(80); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(114); + if (lookahead == '.') ADVANCE(21); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(58) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_macro_rules_BANG); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_macro_rules_BANG); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 69: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(100); END_STATE(); case 70: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(102); + END_STATE(); + case 71: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead == '!' || lookahead == '#' || @@ -10777,69 +10830,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(83); + lookahead == '~') ADVANCE(85); END_STATE(); - case 71: + case 72: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 73: ACCEPT_TOKEN(anon_sym_DOLLAR); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); END_STATE(); - case 72: + case 74: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '\n') ADVANCE(75); + if (lookahead == '\n') ADVANCE(77); if (lookahead == '*' || lookahead == '+' || - lookahead == '?') ADVANCE(151); - if (lookahead != 0) ADVANCE(72); + lookahead == '?') ADVANCE(153); + if (lookahead != 0) ADVANCE(74); END_STATE(); - case 73: + case 75: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(74); + if (lookahead == '/') ADVANCE(76); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(73); + lookahead == ' ') ADVANCE(75); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(75); + lookahead != '?') ADVANCE(77); END_STATE(); - case 74: + case 76: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(72); + if (lookahead == '/') ADVANCE(74); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(75); + lookahead != '?') ADVANCE(77); END_STATE(); - case 75: + case 77: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(75); + lookahead != '?') ADVANCE(77); END_STATE(); - case 76: + case 78: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 77: + case 79: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(126); + if (lookahead == '=') ADVANCE(128); END_STATE(); - case 78: + case 80: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 79: + case 81: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(128); + if (lookahead == '=') ADVANCE(130); END_STATE(); - case 80: + case 82: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 81: + case 83: ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '/') ADVANCE(84); + if (lookahead == '/') ADVANCE(86); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10849,11 +10905,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(83); + lookahead == '~') ADVANCE(85); END_STATE(); - case 82: + case 84: ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '_') ADVANCE(82); + if (lookahead == '_') ADVANCE(84); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10862,10 +10918,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (':' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(83); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(166); + lookahead == '~') ADVANCE(85); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(168); END_STATE(); - case 83: + case 85: ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '!' || lookahead == '#' || @@ -10876,9 +10932,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(83); + lookahead == '~') ADVANCE(85); END_STATE(); - case 84: + case 86: ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '!' || lookahead == '#' || @@ -10889,380 +10945,380 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(84); + lookahead == '~') ADVANCE(86); if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 86: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); - if (lookahead != 0) ADVANCE(15); + lookahead != '\n') ADVANCE(153); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(151); + if (lookahead == '\\') ADVANCE(37); + if (lookahead != 0) ADVANCE(16); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 92: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); - if (lookahead == '>') ADVANCE(65); END_STATE(); case 93: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(65); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(120); + if (lookahead == '>') ADVANCE(66); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(66); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(120); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(121); - if (lookahead == '>') ADVANCE(123); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(123); + if (lookahead == '>') ADVANCE(125); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(113); - if (lookahead == '=') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(115); + if (lookahead == '=') ADVANCE(133); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 107: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(105); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(105); + if (lookahead == '=') ADVANCE(110); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 111: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); - if (lookahead == '>') ADVANCE(95); END_STATE(); case 112: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(95); + if (lookahead == '=') ADVANCE(129); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(129); + if (lookahead == '>') ADVANCE(97); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(97); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(132); - if (lookahead == '|') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(133); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(134); + if (lookahead == '|') ADVANCE(116); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(135); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(135); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '=') ADVANCE(129); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(136); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(137); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(153); + if (lookahead == '=') ADVANCE(131); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(132); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(107); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 138: - ACCEPT_TOKEN(sym_integer_literal); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(109); END_STATE(); case 139: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 140: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '2') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + END_STATE(); + case 141: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '2') ADVANCE(148); + if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); END_STATE(); - case 140: + case 142: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '3') ADVANCE(139); - if (lookahead == '6') ADVANCE(141); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == '3') ADVANCE(141); + if (lookahead == '6') ADVANCE(143); + if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); END_STATE(); - case 141: + case 143: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '4') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == '4') ADVANCE(148); + if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); END_STATE(); - case 142: + case 144: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'b') ADVANCE(42); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'o') ADVANCE(43); - if (lookahead == 'u') ADVANCE(24); - if (lookahead == 'x') ADVANCE(52); + if (lookahead == 'b') ADVANCE(43); + if (lookahead == 'f') ADVANCE(28); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'o') ADVANCE(44); + if (lookahead == 'u') ADVANCE(25); + if (lookahead == 'x') ADVANCE(53); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); + lookahead == '_') ADVANCE(147); END_STATE(); - case 143: + case 145: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(28); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(143); + lookahead == '_') ADVANCE(145); END_STATE(); - case 144: + case 146: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(28); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); + lookahead == '_') ADVANCE(146); END_STATE(); - case 145: + case 147: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(28); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); + lookahead == '_') ADVANCE(147); END_STATE(); - case 146: + case 148: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); END_STATE(); - case 147: + case 149: ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); - case 148: + case 150: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 149: + case 151: ACCEPT_TOKEN(sym_char_literal); END_STATE(); - case 150: + case 152: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 151: + case 153: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); - END_STATE(); - case 152: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(60); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '\'') ADVANCE(16); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + lookahead != '\n') ADVANCE(153); END_STATE(); case 154: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '!') ADVANCE(61); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 155: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '#') ADVANCE(54); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '\'') ADVANCE(17); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 156: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(163); - if (sym_identifier_character_set_6(lookahead)) ADVANCE(166); + if (lookahead == '"') ADVANCE(149); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 157: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(158); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(166); + if (lookahead == '#') ADVANCE(55); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 158: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(162); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '_') ADVANCE(165); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(168); END_STATE(); case 159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(164); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'a') ADVANCE(160); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(168); END_STATE(); case 160: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(159); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'c') ADVANCE(164); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 161: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(156); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'e') ADVANCE(166); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 162: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(161); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'l') ADVANCE(161); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 163: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(165); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'o') ADVANCE(158); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 164: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(152); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'r') ADVANCE(163); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 165: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(160); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'r') ADVANCE(167); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 166: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 's') ADVANCE(154); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 167: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(162); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + END_STATE(); + case 168: + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + END_STATE(); + case 169: ACCEPT_TOKEN(sym_metavariable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); END_STATE(); default: return false; @@ -11999,22 +12055,22 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 57, .external_lex_state = 2}, - [2] = {.lex_state = 57, .external_lex_state = 2}, - [3] = {.lex_state = 57, .external_lex_state = 2}, - [4] = {.lex_state = 57, .external_lex_state = 2}, - [5] = {.lex_state = 57, .external_lex_state = 2}, - [6] = {.lex_state = 57, .external_lex_state = 2}, - [7] = {.lex_state = 57, .external_lex_state = 2}, - [8] = {.lex_state = 57, .external_lex_state = 2}, - [9] = {.lex_state = 57, .external_lex_state = 2}, - [10] = {.lex_state = 57, .external_lex_state = 2}, - [11] = {.lex_state = 57, .external_lex_state = 2}, - [12] = {.lex_state = 57, .external_lex_state = 2}, - [13] = {.lex_state = 57, .external_lex_state = 2}, - [14] = {.lex_state = 57, .external_lex_state = 2}, - [15] = {.lex_state = 57, .external_lex_state = 2}, - [16] = {.lex_state = 57, .external_lex_state = 2}, + [1] = {.lex_state = 58, .external_lex_state = 2}, + [2] = {.lex_state = 58, .external_lex_state = 2}, + [3] = {.lex_state = 58, .external_lex_state = 2}, + [4] = {.lex_state = 58, .external_lex_state = 2}, + [5] = {.lex_state = 58, .external_lex_state = 2}, + [6] = {.lex_state = 58, .external_lex_state = 2}, + [7] = {.lex_state = 58, .external_lex_state = 2}, + [8] = {.lex_state = 58, .external_lex_state = 2}, + [9] = {.lex_state = 58, .external_lex_state = 2}, + [10] = {.lex_state = 58, .external_lex_state = 2}, + [11] = {.lex_state = 58, .external_lex_state = 2}, + [12] = {.lex_state = 58, .external_lex_state = 2}, + [13] = {.lex_state = 58, .external_lex_state = 2}, + [14] = {.lex_state = 58, .external_lex_state = 2}, + [15] = {.lex_state = 58, .external_lex_state = 2}, + [16] = {.lex_state = 58, .external_lex_state = 2}, [17] = {.lex_state = 1, .external_lex_state = 2}, [18] = {.lex_state = 1, .external_lex_state = 2}, [19] = {.lex_state = 1, .external_lex_state = 2}, @@ -12043,77 +12099,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 5, .external_lex_state = 2}, [43] = {.lex_state = 5, .external_lex_state = 2}, [44] = {.lex_state = 5, .external_lex_state = 2}, - [45] = {.lex_state = 56, .external_lex_state = 2}, - [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 56, .external_lex_state = 2}, + [45] = {.lex_state = 5, .external_lex_state = 2}, + [46] = {.lex_state = 57, .external_lex_state = 2}, + [47] = {.lex_state = 5, .external_lex_state = 2}, [48] = {.lex_state = 5, .external_lex_state = 2}, [49] = {.lex_state = 5, .external_lex_state = 2}, - [50] = {.lex_state = 5, .external_lex_state = 2}, + [50] = {.lex_state = 57, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 5, .external_lex_state = 2}, [54] = {.lex_state = 5, .external_lex_state = 2}, [55] = {.lex_state = 5, .external_lex_state = 2}, [56] = {.lex_state = 5, .external_lex_state = 2}, - [57] = {.lex_state = 5, .external_lex_state = 2}, + [57] = {.lex_state = 57, .external_lex_state = 2}, [58] = {.lex_state = 5, .external_lex_state = 2}, [59] = {.lex_state = 5, .external_lex_state = 2}, - [60] = {.lex_state = 56, .external_lex_state = 2}, + [60] = {.lex_state = 5, .external_lex_state = 2}, [61] = {.lex_state = 5, .external_lex_state = 2}, [62] = {.lex_state = 5, .external_lex_state = 2}, [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 56, .external_lex_state = 2}, - [65] = {.lex_state = 5, .external_lex_state = 2}, + [64] = {.lex_state = 5, .external_lex_state = 2}, + [65] = {.lex_state = 57, .external_lex_state = 2}, [66] = {.lex_state = 5, .external_lex_state = 2}, - [67] = {.lex_state = 5, .external_lex_state = 2}, + [67] = {.lex_state = 57, .external_lex_state = 2}, [68] = {.lex_state = 5, .external_lex_state = 2}, [69] = {.lex_state = 5, .external_lex_state = 2}, [70] = {.lex_state = 5, .external_lex_state = 2}, - [71] = {.lex_state = 56, .external_lex_state = 2}, - [72] = {.lex_state = 5, .external_lex_state = 2}, - [73] = {.lex_state = 56, .external_lex_state = 2}, + [71] = {.lex_state = 5, .external_lex_state = 2}, + [72] = {.lex_state = 57, .external_lex_state = 2}, + [73] = {.lex_state = 5, .external_lex_state = 2}, [74] = {.lex_state = 5, .external_lex_state = 2}, [75] = {.lex_state = 5, .external_lex_state = 2}, [76] = {.lex_state = 5, .external_lex_state = 2}, - [77] = {.lex_state = 56, .external_lex_state = 2}, + [77] = {.lex_state = 5, .external_lex_state = 2}, [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 56, .external_lex_state = 2}, + [79] = {.lex_state = 5, .external_lex_state = 2}, [80] = {.lex_state = 5, .external_lex_state = 2}, - [81] = {.lex_state = 56, .external_lex_state = 2}, + [81] = {.lex_state = 5, .external_lex_state = 2}, [82] = {.lex_state = 5, .external_lex_state = 2}, [83] = {.lex_state = 5, .external_lex_state = 2}, [84] = {.lex_state = 5, .external_lex_state = 2}, - [85] = {.lex_state = 56, .external_lex_state = 2}, + [85] = {.lex_state = 5, .external_lex_state = 2}, [86] = {.lex_state = 5, .external_lex_state = 2}, [87] = {.lex_state = 5, .external_lex_state = 2}, [88] = {.lex_state = 5, .external_lex_state = 2}, [89] = {.lex_state = 5, .external_lex_state = 2}, [90] = {.lex_state = 5, .external_lex_state = 2}, - [91] = {.lex_state = 5, .external_lex_state = 2}, - [92] = {.lex_state = 56, .external_lex_state = 2}, + [91] = {.lex_state = 57, .external_lex_state = 2}, + [92] = {.lex_state = 5, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 56, .external_lex_state = 2}, - [96] = {.lex_state = 56, .external_lex_state = 2}, - [97] = {.lex_state = 5, .external_lex_state = 2}, - [98] = {.lex_state = 5, .external_lex_state = 2}, - [99] = {.lex_state = 56, .external_lex_state = 2}, + [95] = {.lex_state = 57, .external_lex_state = 2}, + [96] = {.lex_state = 5, .external_lex_state = 2}, + [97] = {.lex_state = 57, .external_lex_state = 2}, + [98] = {.lex_state = 57, .external_lex_state = 2}, + [99] = {.lex_state = 57, .external_lex_state = 2}, [100] = {.lex_state = 5, .external_lex_state = 2}, [101] = {.lex_state = 5, .external_lex_state = 2}, - [102] = {.lex_state = 56, .external_lex_state = 2}, + [102] = {.lex_state = 5, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 2}, [104] = {.lex_state = 5, .external_lex_state = 2}, [105] = {.lex_state = 5, .external_lex_state = 2}, [106] = {.lex_state = 5, .external_lex_state = 2}, [107] = {.lex_state = 5, .external_lex_state = 2}, - [108] = {.lex_state = 56, .external_lex_state = 2}, - [109] = {.lex_state = 5, .external_lex_state = 2}, + [108] = {.lex_state = 5, .external_lex_state = 2}, + [109] = {.lex_state = 57, .external_lex_state = 2}, [110] = {.lex_state = 5, .external_lex_state = 2}, [111] = {.lex_state = 5, .external_lex_state = 2}, - [112] = {.lex_state = 5, .external_lex_state = 2}, - [113] = {.lex_state = 5, .external_lex_state = 2}, + [112] = {.lex_state = 57, .external_lex_state = 2}, + [113] = {.lex_state = 57, .external_lex_state = 2}, [114] = {.lex_state = 5, .external_lex_state = 2}, - [115] = {.lex_state = 5, .external_lex_state = 2}, + [115] = {.lex_state = 57, .external_lex_state = 2}, [116] = {.lex_state = 5, .external_lex_state = 2}, [117] = {.lex_state = 5, .external_lex_state = 2}, [118] = {.lex_state = 5, .external_lex_state = 2}, @@ -12121,67 +12177,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 5, .external_lex_state = 2}, [121] = {.lex_state = 5, .external_lex_state = 2}, [122] = {.lex_state = 5, .external_lex_state = 2}, - [123] = {.lex_state = 56, .external_lex_state = 2}, - [124] = {.lex_state = 5, .external_lex_state = 2}, + [123] = {.lex_state = 5, .external_lex_state = 2}, + [124] = {.lex_state = 57, .external_lex_state = 2}, [125] = {.lex_state = 5, .external_lex_state = 2}, - [126] = {.lex_state = 56, .external_lex_state = 2}, + [126] = {.lex_state = 5, .external_lex_state = 2}, [127] = {.lex_state = 5, .external_lex_state = 2}, [128] = {.lex_state = 5, .external_lex_state = 2}, - [129] = {.lex_state = 5, .external_lex_state = 2}, - [130] = {.lex_state = 5, .external_lex_state = 2}, - [131] = {.lex_state = 56, .external_lex_state = 2}, + [129] = {.lex_state = 57, .external_lex_state = 2}, + [130] = {.lex_state = 57, .external_lex_state = 2}, + [131] = {.lex_state = 5, .external_lex_state = 2}, [132] = {.lex_state = 5, .external_lex_state = 2}, [133] = {.lex_state = 5, .external_lex_state = 2}, [134] = {.lex_state = 5, .external_lex_state = 2}, - [135] = {.lex_state = 56, .external_lex_state = 2}, + [135] = {.lex_state = 5, .external_lex_state = 2}, [136] = {.lex_state = 5, .external_lex_state = 2}, - [137] = {.lex_state = 5, .external_lex_state = 2}, + [137] = {.lex_state = 57, .external_lex_state = 2}, [138] = {.lex_state = 5, .external_lex_state = 2}, [139] = {.lex_state = 5, .external_lex_state = 2}, - [140] = {.lex_state = 56, .external_lex_state = 2}, - [141] = {.lex_state = 5, .external_lex_state = 2}, - [142] = {.lex_state = 56, .external_lex_state = 2}, + [140] = {.lex_state = 5, .external_lex_state = 2}, + [141] = {.lex_state = 57, .external_lex_state = 2}, + [142] = {.lex_state = 5, .external_lex_state = 2}, [143] = {.lex_state = 5, .external_lex_state = 2}, [144] = {.lex_state = 5, .external_lex_state = 2}, [145] = {.lex_state = 5, .external_lex_state = 2}, [146] = {.lex_state = 5, .external_lex_state = 2}, [147] = {.lex_state = 5, .external_lex_state = 2}, - [148] = {.lex_state = 56, .external_lex_state = 2}, - [149] = {.lex_state = 56, .external_lex_state = 2}, - [150] = {.lex_state = 5, .external_lex_state = 2}, + [148] = {.lex_state = 5, .external_lex_state = 2}, + [149] = {.lex_state = 57, .external_lex_state = 2}, + [150] = {.lex_state = 57, .external_lex_state = 2}, [151] = {.lex_state = 5, .external_lex_state = 2}, [152] = {.lex_state = 5, .external_lex_state = 2}, [153] = {.lex_state = 5, .external_lex_state = 2}, - [154] = {.lex_state = 5, .external_lex_state = 2}, + [154] = {.lex_state = 57, .external_lex_state = 2}, [155] = {.lex_state = 5, .external_lex_state = 2}, [156] = {.lex_state = 5, .external_lex_state = 2}, [157] = {.lex_state = 5, .external_lex_state = 2}, - [158] = {.lex_state = 5, .external_lex_state = 2}, - [159] = {.lex_state = 5, .external_lex_state = 2}, - [160] = {.lex_state = 56, .external_lex_state = 2}, + [158] = {.lex_state = 57, .external_lex_state = 2}, + [159] = {.lex_state = 57, .external_lex_state = 2}, + [160] = {.lex_state = 5, .external_lex_state = 2}, [161] = {.lex_state = 5, .external_lex_state = 2}, [162] = {.lex_state = 5, .external_lex_state = 2}, - [163] = {.lex_state = 56, .external_lex_state = 2}, - [164] = {.lex_state = 5, .external_lex_state = 2}, + [163] = {.lex_state = 57, .external_lex_state = 2}, + [164] = {.lex_state = 57, .external_lex_state = 2}, [165] = {.lex_state = 5, .external_lex_state = 2}, - [166] = {.lex_state = 56, .external_lex_state = 2}, - [167] = {.lex_state = 5, .external_lex_state = 2}, - [168] = {.lex_state = 5, .external_lex_state = 2}, + [166] = {.lex_state = 5, .external_lex_state = 2}, + [167] = {.lex_state = 57, .external_lex_state = 2}, + [168] = {.lex_state = 57, .external_lex_state = 2}, [169] = {.lex_state = 5, .external_lex_state = 2}, [170] = {.lex_state = 5, .external_lex_state = 2}, [171] = {.lex_state = 5, .external_lex_state = 2}, [172] = {.lex_state = 5, .external_lex_state = 2}, - [173] = {.lex_state = 56, .external_lex_state = 2}, + [173] = {.lex_state = 5, .external_lex_state = 2}, [174] = {.lex_state = 5, .external_lex_state = 2}, [175] = {.lex_state = 5, .external_lex_state = 2}, - [176] = {.lex_state = 5, .external_lex_state = 2}, + [176] = {.lex_state = 57, .external_lex_state = 2}, [177] = {.lex_state = 5, .external_lex_state = 2}, - [178] = {.lex_state = 56, .external_lex_state = 2}, + [178] = {.lex_state = 5, .external_lex_state = 2}, [179] = {.lex_state = 5, .external_lex_state = 2}, [180] = {.lex_state = 5, .external_lex_state = 2}, [181] = {.lex_state = 5, .external_lex_state = 2}, - [182] = {.lex_state = 56, .external_lex_state = 2}, - [183] = {.lex_state = 56, .external_lex_state = 2}, + [182] = {.lex_state = 5, .external_lex_state = 2}, + [183] = {.lex_state = 57, .external_lex_state = 2}, [184] = {.lex_state = 6, .external_lex_state = 2}, [185] = {.lex_state = 6, .external_lex_state = 2}, [186] = {.lex_state = 6, .external_lex_state = 2}, @@ -12220,18 +12276,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [219] = {.lex_state = 1, .external_lex_state = 2}, [220] = {.lex_state = 1, .external_lex_state = 2}, [221] = {.lex_state = 1, .external_lex_state = 2}, - [222] = {.lex_state = 1, .external_lex_state = 2}, + [222] = {.lex_state = 5, .external_lex_state = 2}, [223] = {.lex_state = 5, .external_lex_state = 2}, [224] = {.lex_state = 1, .external_lex_state = 2}, [225] = {.lex_state = 1, .external_lex_state = 2}, [226] = {.lex_state = 1, .external_lex_state = 2}, [227] = {.lex_state = 1, .external_lex_state = 2}, [228] = {.lex_state = 5, .external_lex_state = 2}, - [229] = {.lex_state = 5, .external_lex_state = 2}, + [229] = {.lex_state = 1, .external_lex_state = 2}, [230] = {.lex_state = 1, .external_lex_state = 2}, [231] = {.lex_state = 1, .external_lex_state = 2}, [232] = {.lex_state = 1, .external_lex_state = 2}, - [233] = {.lex_state = 5, .external_lex_state = 2}, + [233] = {.lex_state = 1, .external_lex_state = 2}, [234] = {.lex_state = 1, .external_lex_state = 2}, [235] = {.lex_state = 1, .external_lex_state = 2}, [236] = {.lex_state = 1, .external_lex_state = 2}, @@ -12241,256 +12297,256 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [240] = {.lex_state = 1, .external_lex_state = 2}, [241] = {.lex_state = 1, .external_lex_state = 2}, [242] = {.lex_state = 1, .external_lex_state = 2}, - [243] = {.lex_state = 1, .external_lex_state = 2}, + [243] = {.lex_state = 5, .external_lex_state = 2}, [244] = {.lex_state = 1, .external_lex_state = 2}, [245] = {.lex_state = 5, .external_lex_state = 2}, [246] = {.lex_state = 5, .external_lex_state = 2}, [247] = {.lex_state = 5, .external_lex_state = 2}, [248] = {.lex_state = 4, .external_lex_state = 3}, - [249] = {.lex_state = 4, .external_lex_state = 3}, + [249] = {.lex_state = 12, .external_lex_state = 2}, [250] = {.lex_state = 4, .external_lex_state = 3}, - [251] = {.lex_state = 12, .external_lex_state = 2}, + [251] = {.lex_state = 4, .external_lex_state = 3}, [252] = {.lex_state = 4, .external_lex_state = 3}, [253] = {.lex_state = 4, .external_lex_state = 3}, - [254] = {.lex_state = 57, .external_lex_state = 2}, - [255] = {.lex_state = 57, .external_lex_state = 2}, - [256] = {.lex_state = 57, .external_lex_state = 2}, - [257] = {.lex_state = 57, .external_lex_state = 2}, - [258] = {.lex_state = 57, .external_lex_state = 2}, - [259] = {.lex_state = 57, .external_lex_state = 2}, - [260] = {.lex_state = 57, .external_lex_state = 2}, - [261] = {.lex_state = 57, .external_lex_state = 2}, - [262] = {.lex_state = 57, .external_lex_state = 2}, - [263] = {.lex_state = 57, .external_lex_state = 2}, - [264] = {.lex_state = 57, .external_lex_state = 2}, - [265] = {.lex_state = 57, .external_lex_state = 2}, - [266] = {.lex_state = 57, .external_lex_state = 2}, - [267] = {.lex_state = 57, .external_lex_state = 2}, - [268] = {.lex_state = 57, .external_lex_state = 2}, - [269] = {.lex_state = 57, .external_lex_state = 2}, - [270] = {.lex_state = 57, .external_lex_state = 2}, - [271] = {.lex_state = 57, .external_lex_state = 2}, - [272] = {.lex_state = 57, .external_lex_state = 2}, - [273] = {.lex_state = 57, .external_lex_state = 2}, - [274] = {.lex_state = 57, .external_lex_state = 2}, - [275] = {.lex_state = 57, .external_lex_state = 2}, - [276] = {.lex_state = 57, .external_lex_state = 2}, - [277] = {.lex_state = 57, .external_lex_state = 2}, - [278] = {.lex_state = 57, .external_lex_state = 2}, - [279] = {.lex_state = 57, .external_lex_state = 2}, - [280] = {.lex_state = 5, .external_lex_state = 2}, - [281] = {.lex_state = 57, .external_lex_state = 2}, - [282] = {.lex_state = 57, .external_lex_state = 2}, - [283] = {.lex_state = 57, .external_lex_state = 2}, - [284] = {.lex_state = 57, .external_lex_state = 2}, - [285] = {.lex_state = 57, .external_lex_state = 2}, - [286] = {.lex_state = 57, .external_lex_state = 2}, - [287] = {.lex_state = 57, .external_lex_state = 2}, - [288] = {.lex_state = 57, .external_lex_state = 2}, - [289] = {.lex_state = 57, .external_lex_state = 2}, - [290] = {.lex_state = 57, .external_lex_state = 2}, - [291] = {.lex_state = 57, .external_lex_state = 2}, - [292] = {.lex_state = 57, .external_lex_state = 2}, - [293] = {.lex_state = 57, .external_lex_state = 2}, - [294] = {.lex_state = 57, .external_lex_state = 2}, - [295] = {.lex_state = 57, .external_lex_state = 2}, - [296] = {.lex_state = 57, .external_lex_state = 2}, - [297] = {.lex_state = 57, .external_lex_state = 2}, - [298] = {.lex_state = 57, .external_lex_state = 2}, - [299] = {.lex_state = 57, .external_lex_state = 2}, - [300] = {.lex_state = 57, .external_lex_state = 2}, - [301] = {.lex_state = 57, .external_lex_state = 2}, - [302] = {.lex_state = 57, .external_lex_state = 2}, - [303] = {.lex_state = 57, .external_lex_state = 2}, - [304] = {.lex_state = 57, .external_lex_state = 2}, - [305] = {.lex_state = 57, .external_lex_state = 2}, - [306] = {.lex_state = 57, .external_lex_state = 2}, - [307] = {.lex_state = 57, .external_lex_state = 2}, - [308] = {.lex_state = 57, .external_lex_state = 2}, - [309] = {.lex_state = 57, .external_lex_state = 2}, - [310] = {.lex_state = 57, .external_lex_state = 2}, - [311] = {.lex_state = 57, .external_lex_state = 2}, - [312] = {.lex_state = 57, .external_lex_state = 2}, - [313] = {.lex_state = 57, .external_lex_state = 2}, - [314] = {.lex_state = 57, .external_lex_state = 2}, - [315] = {.lex_state = 57, .external_lex_state = 2}, - [316] = {.lex_state = 57, .external_lex_state = 2}, - [317] = {.lex_state = 57, .external_lex_state = 2}, - [318] = {.lex_state = 57, .external_lex_state = 2}, - [319] = {.lex_state = 57, .external_lex_state = 2}, - [320] = {.lex_state = 57, .external_lex_state = 2}, - [321] = {.lex_state = 57, .external_lex_state = 2}, - [322] = {.lex_state = 57, .external_lex_state = 2}, - [323] = {.lex_state = 57, .external_lex_state = 2}, - [324] = {.lex_state = 57, .external_lex_state = 2}, - [325] = {.lex_state = 57, .external_lex_state = 2}, - [326] = {.lex_state = 57, .external_lex_state = 2}, - [327] = {.lex_state = 57, .external_lex_state = 2}, - [328] = {.lex_state = 57, .external_lex_state = 2}, - [329] = {.lex_state = 57, .external_lex_state = 2}, - [330] = {.lex_state = 57, .external_lex_state = 2}, - [331] = {.lex_state = 57, .external_lex_state = 2}, - [332] = {.lex_state = 57, .external_lex_state = 2}, - [333] = {.lex_state = 57, .external_lex_state = 2}, - [334] = {.lex_state = 57, .external_lex_state = 2}, - [335] = {.lex_state = 57, .external_lex_state = 2}, - [336] = {.lex_state = 57, .external_lex_state = 2}, - [337] = {.lex_state = 57, .external_lex_state = 2}, - [338] = {.lex_state = 57, .external_lex_state = 2}, - [339] = {.lex_state = 57, .external_lex_state = 2}, - [340] = {.lex_state = 57, .external_lex_state = 2}, - [341] = {.lex_state = 57, .external_lex_state = 2}, - [342] = {.lex_state = 57, .external_lex_state = 2}, - [343] = {.lex_state = 57, .external_lex_state = 2}, - [344] = {.lex_state = 57, .external_lex_state = 2}, - [345] = {.lex_state = 57, .external_lex_state = 2}, - [346] = {.lex_state = 57, .external_lex_state = 2}, - [347] = {.lex_state = 57, .external_lex_state = 2}, - [348] = {.lex_state = 57, .external_lex_state = 2}, - [349] = {.lex_state = 57, .external_lex_state = 2}, - [350] = {.lex_state = 57, .external_lex_state = 2}, - [351] = {.lex_state = 57, .external_lex_state = 2}, - [352] = {.lex_state = 57, .external_lex_state = 2}, - [353] = {.lex_state = 57, .external_lex_state = 2}, - [354] = {.lex_state = 57, .external_lex_state = 2}, - [355] = {.lex_state = 57, .external_lex_state = 2}, - [356] = {.lex_state = 57, .external_lex_state = 2}, - [357] = {.lex_state = 57, .external_lex_state = 2}, - [358] = {.lex_state = 57, .external_lex_state = 2}, - [359] = {.lex_state = 57, .external_lex_state = 2}, - [360] = {.lex_state = 57, .external_lex_state = 2}, + [254] = {.lex_state = 58, .external_lex_state = 2}, + [255] = {.lex_state = 58, .external_lex_state = 2}, + [256] = {.lex_state = 58, .external_lex_state = 2}, + [257] = {.lex_state = 58, .external_lex_state = 2}, + [258] = {.lex_state = 58, .external_lex_state = 2}, + [259] = {.lex_state = 58, .external_lex_state = 2}, + [260] = {.lex_state = 58, .external_lex_state = 2}, + [261] = {.lex_state = 58, .external_lex_state = 2}, + [262] = {.lex_state = 58, .external_lex_state = 2}, + [263] = {.lex_state = 58, .external_lex_state = 2}, + [264] = {.lex_state = 58, .external_lex_state = 2}, + [265] = {.lex_state = 58, .external_lex_state = 2}, + [266] = {.lex_state = 58, .external_lex_state = 2}, + [267] = {.lex_state = 58, .external_lex_state = 2}, + [268] = {.lex_state = 58, .external_lex_state = 2}, + [269] = {.lex_state = 58, .external_lex_state = 2}, + [270] = {.lex_state = 58, .external_lex_state = 2}, + [271] = {.lex_state = 5, .external_lex_state = 2}, + [272] = {.lex_state = 58, .external_lex_state = 2}, + [273] = {.lex_state = 58, .external_lex_state = 2}, + [274] = {.lex_state = 58, .external_lex_state = 2}, + [275] = {.lex_state = 58, .external_lex_state = 2}, + [276] = {.lex_state = 58, .external_lex_state = 2}, + [277] = {.lex_state = 58, .external_lex_state = 2}, + [278] = {.lex_state = 58, .external_lex_state = 2}, + [279] = {.lex_state = 58, .external_lex_state = 2}, + [280] = {.lex_state = 58, .external_lex_state = 2}, + [281] = {.lex_state = 58, .external_lex_state = 2}, + [282] = {.lex_state = 58, .external_lex_state = 2}, + [283] = {.lex_state = 58, .external_lex_state = 2}, + [284] = {.lex_state = 58, .external_lex_state = 2}, + [285] = {.lex_state = 58, .external_lex_state = 2}, + [286] = {.lex_state = 58, .external_lex_state = 2}, + [287] = {.lex_state = 58, .external_lex_state = 2}, + [288] = {.lex_state = 58, .external_lex_state = 2}, + [289] = {.lex_state = 58, .external_lex_state = 2}, + [290] = {.lex_state = 58, .external_lex_state = 2}, + [291] = {.lex_state = 58, .external_lex_state = 2}, + [292] = {.lex_state = 58, .external_lex_state = 2}, + [293] = {.lex_state = 58, .external_lex_state = 2}, + [294] = {.lex_state = 58, .external_lex_state = 2}, + [295] = {.lex_state = 58, .external_lex_state = 2}, + [296] = {.lex_state = 58, .external_lex_state = 2}, + [297] = {.lex_state = 58, .external_lex_state = 2}, + [298] = {.lex_state = 58, .external_lex_state = 2}, + [299] = {.lex_state = 58, .external_lex_state = 2}, + [300] = {.lex_state = 58, .external_lex_state = 2}, + [301] = {.lex_state = 58, .external_lex_state = 2}, + [302] = {.lex_state = 58, .external_lex_state = 2}, + [303] = {.lex_state = 58, .external_lex_state = 2}, + [304] = {.lex_state = 58, .external_lex_state = 2}, + [305] = {.lex_state = 58, .external_lex_state = 2}, + [306] = {.lex_state = 58, .external_lex_state = 2}, + [307] = {.lex_state = 58, .external_lex_state = 2}, + [308] = {.lex_state = 58, .external_lex_state = 2}, + [309] = {.lex_state = 58, .external_lex_state = 2}, + [310] = {.lex_state = 58, .external_lex_state = 2}, + [311] = {.lex_state = 58, .external_lex_state = 2}, + [312] = {.lex_state = 58, .external_lex_state = 2}, + [313] = {.lex_state = 58, .external_lex_state = 2}, + [314] = {.lex_state = 58, .external_lex_state = 2}, + [315] = {.lex_state = 58, .external_lex_state = 2}, + [316] = {.lex_state = 58, .external_lex_state = 2}, + [317] = {.lex_state = 58, .external_lex_state = 2}, + [318] = {.lex_state = 58, .external_lex_state = 2}, + [319] = {.lex_state = 58, .external_lex_state = 2}, + [320] = {.lex_state = 58, .external_lex_state = 2}, + [321] = {.lex_state = 58, .external_lex_state = 2}, + [322] = {.lex_state = 58, .external_lex_state = 2}, + [323] = {.lex_state = 58, .external_lex_state = 2}, + [324] = {.lex_state = 58, .external_lex_state = 2}, + [325] = {.lex_state = 58, .external_lex_state = 2}, + [326] = {.lex_state = 58, .external_lex_state = 2}, + [327] = {.lex_state = 58, .external_lex_state = 2}, + [328] = {.lex_state = 58, .external_lex_state = 2}, + [329] = {.lex_state = 58, .external_lex_state = 2}, + [330] = {.lex_state = 58, .external_lex_state = 2}, + [331] = {.lex_state = 58, .external_lex_state = 2}, + [332] = {.lex_state = 58, .external_lex_state = 2}, + [333] = {.lex_state = 58, .external_lex_state = 2}, + [334] = {.lex_state = 58, .external_lex_state = 2}, + [335] = {.lex_state = 58, .external_lex_state = 2}, + [336] = {.lex_state = 58, .external_lex_state = 2}, + [337] = {.lex_state = 58, .external_lex_state = 2}, + [338] = {.lex_state = 58, .external_lex_state = 2}, + [339] = {.lex_state = 58, .external_lex_state = 2}, + [340] = {.lex_state = 58, .external_lex_state = 2}, + [341] = {.lex_state = 58, .external_lex_state = 2}, + [342] = {.lex_state = 58, .external_lex_state = 2}, + [343] = {.lex_state = 58, .external_lex_state = 2}, + [344] = {.lex_state = 58, .external_lex_state = 2}, + [345] = {.lex_state = 58, .external_lex_state = 2}, + [346] = {.lex_state = 58, .external_lex_state = 2}, + [347] = {.lex_state = 58, .external_lex_state = 2}, + [348] = {.lex_state = 58, .external_lex_state = 2}, + [349] = {.lex_state = 58, .external_lex_state = 2}, + [350] = {.lex_state = 58, .external_lex_state = 2}, + [351] = {.lex_state = 58, .external_lex_state = 2}, + [352] = {.lex_state = 58, .external_lex_state = 2}, + [353] = {.lex_state = 58, .external_lex_state = 2}, + [354] = {.lex_state = 58, .external_lex_state = 2}, + [355] = {.lex_state = 58, .external_lex_state = 2}, + [356] = {.lex_state = 58, .external_lex_state = 2}, + [357] = {.lex_state = 58, .external_lex_state = 2}, + [358] = {.lex_state = 58, .external_lex_state = 2}, + [359] = {.lex_state = 58, .external_lex_state = 2}, + [360] = {.lex_state = 58, .external_lex_state = 2}, [361] = {.lex_state = 5, .external_lex_state = 2}, - [362] = {.lex_state = 57, .external_lex_state = 2}, - [363] = {.lex_state = 57, .external_lex_state = 2}, - [364] = {.lex_state = 57, .external_lex_state = 2}, - [365] = {.lex_state = 57, .external_lex_state = 2}, - [366] = {.lex_state = 57, .external_lex_state = 2}, - [367] = {.lex_state = 57, .external_lex_state = 2}, - [368] = {.lex_state = 57, .external_lex_state = 2}, - [369] = {.lex_state = 57, .external_lex_state = 2}, - [370] = {.lex_state = 57, .external_lex_state = 2}, - [371] = {.lex_state = 57, .external_lex_state = 2}, - [372] = {.lex_state = 57, .external_lex_state = 2}, - [373] = {.lex_state = 57, .external_lex_state = 2}, - [374] = {.lex_state = 57, .external_lex_state = 2}, - [375] = {.lex_state = 57, .external_lex_state = 2}, - [376] = {.lex_state = 57, .external_lex_state = 2}, - [377] = {.lex_state = 57, .external_lex_state = 2}, - [378] = {.lex_state = 57, .external_lex_state = 2}, - [379] = {.lex_state = 57, .external_lex_state = 2}, - [380] = {.lex_state = 57, .external_lex_state = 2}, - [381] = {.lex_state = 57, .external_lex_state = 2}, - [382] = {.lex_state = 57, .external_lex_state = 2}, - [383] = {.lex_state = 57, .external_lex_state = 2}, - [384] = {.lex_state = 57, .external_lex_state = 2}, - [385] = {.lex_state = 57, .external_lex_state = 2}, - [386] = {.lex_state = 57, .external_lex_state = 2}, - [387] = {.lex_state = 5, .external_lex_state = 2}, - [388] = {.lex_state = 57, .external_lex_state = 2}, - [389] = {.lex_state = 57, .external_lex_state = 2}, - [390] = {.lex_state = 57, .external_lex_state = 2}, - [391] = {.lex_state = 57, .external_lex_state = 2}, - [392] = {.lex_state = 57, .external_lex_state = 2}, - [393] = {.lex_state = 57, .external_lex_state = 2}, - [394] = {.lex_state = 57, .external_lex_state = 2}, - [395] = {.lex_state = 57, .external_lex_state = 2}, - [396] = {.lex_state = 57, .external_lex_state = 2}, - [397] = {.lex_state = 57, .external_lex_state = 2}, - [398] = {.lex_state = 57, .external_lex_state = 2}, - [399] = {.lex_state = 57, .external_lex_state = 2}, - [400] = {.lex_state = 57, .external_lex_state = 2}, - [401] = {.lex_state = 57, .external_lex_state = 2}, - [402] = {.lex_state = 57, .external_lex_state = 2}, - [403] = {.lex_state = 57, .external_lex_state = 2}, - [404] = {.lex_state = 57, .external_lex_state = 2}, - [405] = {.lex_state = 57, .external_lex_state = 2}, - [406] = {.lex_state = 57, .external_lex_state = 2}, - [407] = {.lex_state = 57, .external_lex_state = 2}, - [408] = {.lex_state = 57, .external_lex_state = 2}, - [409] = {.lex_state = 57, .external_lex_state = 2}, - [410] = {.lex_state = 57, .external_lex_state = 2}, - [411] = {.lex_state = 57, .external_lex_state = 2}, - [412] = {.lex_state = 57, .external_lex_state = 2}, - [413] = {.lex_state = 57, .external_lex_state = 2}, - [414] = {.lex_state = 57, .external_lex_state = 2}, - [415] = {.lex_state = 57, .external_lex_state = 2}, - [416] = {.lex_state = 57, .external_lex_state = 2}, - [417] = {.lex_state = 57, .external_lex_state = 2}, - [418] = {.lex_state = 57, .external_lex_state = 2}, - [419] = {.lex_state = 57, .external_lex_state = 2}, - [420] = {.lex_state = 57, .external_lex_state = 2}, - [421] = {.lex_state = 57, .external_lex_state = 2}, - [422] = {.lex_state = 57, .external_lex_state = 2}, - [423] = {.lex_state = 57, .external_lex_state = 2}, - [424] = {.lex_state = 57, .external_lex_state = 2}, - [425] = {.lex_state = 57, .external_lex_state = 2}, - [426] = {.lex_state = 57, .external_lex_state = 2}, - [427] = {.lex_state = 57, .external_lex_state = 2}, - [428] = {.lex_state = 57, .external_lex_state = 2}, - [429] = {.lex_state = 57, .external_lex_state = 2}, - [430] = {.lex_state = 57, .external_lex_state = 2}, - [431] = {.lex_state = 57, .external_lex_state = 2}, - [432] = {.lex_state = 57, .external_lex_state = 2}, - [433] = {.lex_state = 57, .external_lex_state = 2}, - [434] = {.lex_state = 57, .external_lex_state = 2}, - [435] = {.lex_state = 57, .external_lex_state = 2}, - [436] = {.lex_state = 57, .external_lex_state = 2}, - [437] = {.lex_state = 57, .external_lex_state = 2}, - [438] = {.lex_state = 57, .external_lex_state = 2}, - [439] = {.lex_state = 57, .external_lex_state = 2}, - [440] = {.lex_state = 57, .external_lex_state = 2}, - [441] = {.lex_state = 57, .external_lex_state = 2}, - [442] = {.lex_state = 57, .external_lex_state = 2}, - [443] = {.lex_state = 57, .external_lex_state = 2}, - [444] = {.lex_state = 57, .external_lex_state = 2}, - [445] = {.lex_state = 57, .external_lex_state = 2}, - [446] = {.lex_state = 57, .external_lex_state = 2}, - [447] = {.lex_state = 57, .external_lex_state = 2}, - [448] = {.lex_state = 57, .external_lex_state = 2}, - [449] = {.lex_state = 57, .external_lex_state = 2}, - [450] = {.lex_state = 57, .external_lex_state = 2}, - [451] = {.lex_state = 57, .external_lex_state = 2}, - [452] = {.lex_state = 57, .external_lex_state = 2}, - [453] = {.lex_state = 57, .external_lex_state = 2}, - [454] = {.lex_state = 57, .external_lex_state = 2}, - [455] = {.lex_state = 57, .external_lex_state = 2}, - [456] = {.lex_state = 57, .external_lex_state = 2}, - [457] = {.lex_state = 57, .external_lex_state = 2}, - [458] = {.lex_state = 57, .external_lex_state = 2}, - [459] = {.lex_state = 57, .external_lex_state = 2}, - [460] = {.lex_state = 57, .external_lex_state = 2}, - [461] = {.lex_state = 57, .external_lex_state = 2}, - [462] = {.lex_state = 57, .external_lex_state = 2}, - [463] = {.lex_state = 57, .external_lex_state = 2}, - [464] = {.lex_state = 57, .external_lex_state = 2}, - [465] = {.lex_state = 57, .external_lex_state = 2}, - [466] = {.lex_state = 57, .external_lex_state = 2}, - [467] = {.lex_state = 57, .external_lex_state = 2}, - [468] = {.lex_state = 57, .external_lex_state = 2}, - [469] = {.lex_state = 57, .external_lex_state = 2}, - [470] = {.lex_state = 57, .external_lex_state = 2}, - [471] = {.lex_state = 57, .external_lex_state = 2}, - [472] = {.lex_state = 57, .external_lex_state = 2}, - [473] = {.lex_state = 57, .external_lex_state = 2}, - [474] = {.lex_state = 57, .external_lex_state = 2}, - [475] = {.lex_state = 57, .external_lex_state = 2}, - [476] = {.lex_state = 57, .external_lex_state = 2}, - [477] = {.lex_state = 57, .external_lex_state = 2}, - [478] = {.lex_state = 57, .external_lex_state = 2}, - [479] = {.lex_state = 57, .external_lex_state = 2}, - [480] = {.lex_state = 57, .external_lex_state = 2}, - [481] = {.lex_state = 57, .external_lex_state = 2}, - [482] = {.lex_state = 12, .external_lex_state = 2}, + [362] = {.lex_state = 58, .external_lex_state = 2}, + [363] = {.lex_state = 58, .external_lex_state = 2}, + [364] = {.lex_state = 58, .external_lex_state = 2}, + [365] = {.lex_state = 58, .external_lex_state = 2}, + [366] = {.lex_state = 58, .external_lex_state = 2}, + [367] = {.lex_state = 58, .external_lex_state = 2}, + [368] = {.lex_state = 58, .external_lex_state = 2}, + [369] = {.lex_state = 58, .external_lex_state = 2}, + [370] = {.lex_state = 58, .external_lex_state = 2}, + [371] = {.lex_state = 58, .external_lex_state = 2}, + [372] = {.lex_state = 58, .external_lex_state = 2}, + [373] = {.lex_state = 58, .external_lex_state = 2}, + [374] = {.lex_state = 58, .external_lex_state = 2}, + [375] = {.lex_state = 58, .external_lex_state = 2}, + [376] = {.lex_state = 58, .external_lex_state = 2}, + [377] = {.lex_state = 58, .external_lex_state = 2}, + [378] = {.lex_state = 58, .external_lex_state = 2}, + [379] = {.lex_state = 58, .external_lex_state = 2}, + [380] = {.lex_state = 58, .external_lex_state = 2}, + [381] = {.lex_state = 5, .external_lex_state = 2}, + [382] = {.lex_state = 58, .external_lex_state = 2}, + [383] = {.lex_state = 58, .external_lex_state = 2}, + [384] = {.lex_state = 58, .external_lex_state = 2}, + [385] = {.lex_state = 58, .external_lex_state = 2}, + [386] = {.lex_state = 58, .external_lex_state = 2}, + [387] = {.lex_state = 58, .external_lex_state = 2}, + [388] = {.lex_state = 58, .external_lex_state = 2}, + [389] = {.lex_state = 58, .external_lex_state = 2}, + [390] = {.lex_state = 58, .external_lex_state = 2}, + [391] = {.lex_state = 58, .external_lex_state = 2}, + [392] = {.lex_state = 58, .external_lex_state = 2}, + [393] = {.lex_state = 58, .external_lex_state = 2}, + [394] = {.lex_state = 58, .external_lex_state = 2}, + [395] = {.lex_state = 58, .external_lex_state = 2}, + [396] = {.lex_state = 58, .external_lex_state = 2}, + [397] = {.lex_state = 58, .external_lex_state = 2}, + [398] = {.lex_state = 58, .external_lex_state = 2}, + [399] = {.lex_state = 58, .external_lex_state = 2}, + [400] = {.lex_state = 58, .external_lex_state = 2}, + [401] = {.lex_state = 58, .external_lex_state = 2}, + [402] = {.lex_state = 58, .external_lex_state = 2}, + [403] = {.lex_state = 58, .external_lex_state = 2}, + [404] = {.lex_state = 58, .external_lex_state = 2}, + [405] = {.lex_state = 58, .external_lex_state = 2}, + [406] = {.lex_state = 58, .external_lex_state = 2}, + [407] = {.lex_state = 58, .external_lex_state = 2}, + [408] = {.lex_state = 58, .external_lex_state = 2}, + [409] = {.lex_state = 58, .external_lex_state = 2}, + [410] = {.lex_state = 58, .external_lex_state = 2}, + [411] = {.lex_state = 58, .external_lex_state = 2}, + [412] = {.lex_state = 58, .external_lex_state = 2}, + [413] = {.lex_state = 58, .external_lex_state = 2}, + [414] = {.lex_state = 58, .external_lex_state = 2}, + [415] = {.lex_state = 58, .external_lex_state = 2}, + [416] = {.lex_state = 58, .external_lex_state = 2}, + [417] = {.lex_state = 58, .external_lex_state = 2}, + [418] = {.lex_state = 58, .external_lex_state = 2}, + [419] = {.lex_state = 58, .external_lex_state = 2}, + [420] = {.lex_state = 58, .external_lex_state = 2}, + [421] = {.lex_state = 58, .external_lex_state = 2}, + [422] = {.lex_state = 58, .external_lex_state = 2}, + [423] = {.lex_state = 58, .external_lex_state = 2}, + [424] = {.lex_state = 58, .external_lex_state = 2}, + [425] = {.lex_state = 58, .external_lex_state = 2}, + [426] = {.lex_state = 58, .external_lex_state = 2}, + [427] = {.lex_state = 58, .external_lex_state = 2}, + [428] = {.lex_state = 58, .external_lex_state = 2}, + [429] = {.lex_state = 58, .external_lex_state = 2}, + [430] = {.lex_state = 58, .external_lex_state = 2}, + [431] = {.lex_state = 58, .external_lex_state = 2}, + [432] = {.lex_state = 58, .external_lex_state = 2}, + [433] = {.lex_state = 58, .external_lex_state = 2}, + [434] = {.lex_state = 58, .external_lex_state = 2}, + [435] = {.lex_state = 58, .external_lex_state = 2}, + [436] = {.lex_state = 58, .external_lex_state = 2}, + [437] = {.lex_state = 58, .external_lex_state = 2}, + [438] = {.lex_state = 58, .external_lex_state = 2}, + [439] = {.lex_state = 58, .external_lex_state = 2}, + [440] = {.lex_state = 58, .external_lex_state = 2}, + [441] = {.lex_state = 58, .external_lex_state = 2}, + [442] = {.lex_state = 58, .external_lex_state = 2}, + [443] = {.lex_state = 58, .external_lex_state = 2}, + [444] = {.lex_state = 58, .external_lex_state = 2}, + [445] = {.lex_state = 58, .external_lex_state = 2}, + [446] = {.lex_state = 58, .external_lex_state = 2}, + [447] = {.lex_state = 58, .external_lex_state = 2}, + [448] = {.lex_state = 58, .external_lex_state = 2}, + [449] = {.lex_state = 58, .external_lex_state = 2}, + [450] = {.lex_state = 58, .external_lex_state = 2}, + [451] = {.lex_state = 58, .external_lex_state = 2}, + [452] = {.lex_state = 58, .external_lex_state = 2}, + [453] = {.lex_state = 58, .external_lex_state = 2}, + [454] = {.lex_state = 58, .external_lex_state = 2}, + [455] = {.lex_state = 58, .external_lex_state = 2}, + [456] = {.lex_state = 58, .external_lex_state = 2}, + [457] = {.lex_state = 58, .external_lex_state = 2}, + [458] = {.lex_state = 58, .external_lex_state = 2}, + [459] = {.lex_state = 58, .external_lex_state = 2}, + [460] = {.lex_state = 58, .external_lex_state = 2}, + [461] = {.lex_state = 58, .external_lex_state = 2}, + [462] = {.lex_state = 58, .external_lex_state = 2}, + [463] = {.lex_state = 58, .external_lex_state = 2}, + [464] = {.lex_state = 58, .external_lex_state = 2}, + [465] = {.lex_state = 58, .external_lex_state = 2}, + [466] = {.lex_state = 58, .external_lex_state = 2}, + [467] = {.lex_state = 58, .external_lex_state = 2}, + [468] = {.lex_state = 58, .external_lex_state = 2}, + [469] = {.lex_state = 58, .external_lex_state = 2}, + [470] = {.lex_state = 58, .external_lex_state = 2}, + [471] = {.lex_state = 58, .external_lex_state = 2}, + [472] = {.lex_state = 58, .external_lex_state = 2}, + [473] = {.lex_state = 58, .external_lex_state = 2}, + [474] = {.lex_state = 58, .external_lex_state = 2}, + [475] = {.lex_state = 58, .external_lex_state = 2}, + [476] = {.lex_state = 58, .external_lex_state = 2}, + [477] = {.lex_state = 58, .external_lex_state = 2}, + [478] = {.lex_state = 58, .external_lex_state = 2}, + [479] = {.lex_state = 58, .external_lex_state = 2}, + [480] = {.lex_state = 58, .external_lex_state = 2}, + [481] = {.lex_state = 58, .external_lex_state = 2}, + [482] = {.lex_state = 5, .external_lex_state = 2}, [483] = {.lex_state = 12, .external_lex_state = 2}, [484] = {.lex_state = 12, .external_lex_state = 2}, [485] = {.lex_state = 12, .external_lex_state = 2}, [486] = {.lex_state = 12, .external_lex_state = 2}, - [487] = {.lex_state = 12, .external_lex_state = 2}, - [488] = {.lex_state = 5, .external_lex_state = 2}, - [489] = {.lex_state = 5, .external_lex_state = 2}, + [487] = {.lex_state = 5, .external_lex_state = 2}, + [488] = {.lex_state = 12, .external_lex_state = 2}, + [489] = {.lex_state = 12, .external_lex_state = 2}, [490] = {.lex_state = 12, .external_lex_state = 2}, [491] = {.lex_state = 5, .external_lex_state = 2}, - [492] = {.lex_state = 12, .external_lex_state = 2}, + [492] = {.lex_state = 13, .external_lex_state = 2}, [493] = {.lex_state = 12, .external_lex_state = 2}, [494] = {.lex_state = 12, .external_lex_state = 2}, [495] = {.lex_state = 12, .external_lex_state = 2}, @@ -12498,113 +12554,113 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [497] = {.lex_state = 12, .external_lex_state = 2}, [498] = {.lex_state = 12, .external_lex_state = 2}, [499] = {.lex_state = 12, .external_lex_state = 2}, - [500] = {.lex_state = 5, .external_lex_state = 2}, - [501] = {.lex_state = 12, .external_lex_state = 2}, - [502] = {.lex_state = 12, .external_lex_state = 2}, - [503] = {.lex_state = 12, .external_lex_state = 2}, - [504] = {.lex_state = 12, .external_lex_state = 2}, - [505] = {.lex_state = 12, .external_lex_state = 2}, - [506] = {.lex_state = 12, .external_lex_state = 2}, + [500] = {.lex_state = 12, .external_lex_state = 2}, + [501] = {.lex_state = 5, .external_lex_state = 2}, + [502] = {.lex_state = 13, .external_lex_state = 2}, + [503] = {.lex_state = 13, .external_lex_state = 2}, + [504] = {.lex_state = 13, .external_lex_state = 2}, + [505] = {.lex_state = 13, .external_lex_state = 2}, + [506] = {.lex_state = 13, .external_lex_state = 2}, [507] = {.lex_state = 12, .external_lex_state = 2}, - [508] = {.lex_state = 12, .external_lex_state = 2}, - [509] = {.lex_state = 12, .external_lex_state = 2}, + [508] = {.lex_state = 13, .external_lex_state = 2}, + [509] = {.lex_state = 13, .external_lex_state = 2}, [510] = {.lex_state = 12, .external_lex_state = 2}, [511] = {.lex_state = 12, .external_lex_state = 2}, - [512] = {.lex_state = 12, .external_lex_state = 2}, - [513] = {.lex_state = 12, .external_lex_state = 2}, + [512] = {.lex_state = 13, .external_lex_state = 2}, + [513] = {.lex_state = 13, .external_lex_state = 2}, [514] = {.lex_state = 12, .external_lex_state = 2}, - [515] = {.lex_state = 12, .external_lex_state = 2}, - [516] = {.lex_state = 12, .external_lex_state = 2}, + [515] = {.lex_state = 13, .external_lex_state = 2}, + [516] = {.lex_state = 13, .external_lex_state = 2}, [517] = {.lex_state = 12, .external_lex_state = 2}, [518] = {.lex_state = 12, .external_lex_state = 2}, [519] = {.lex_state = 12, .external_lex_state = 2}, [520] = {.lex_state = 12, .external_lex_state = 2}, - [521] = {.lex_state = 12, .external_lex_state = 2}, - [522] = {.lex_state = 12, .external_lex_state = 2}, - [523] = {.lex_state = 12, .external_lex_state = 2}, - [524] = {.lex_state = 12, .external_lex_state = 2}, - [525] = {.lex_state = 12, .external_lex_state = 2}, - [526] = {.lex_state = 12, .external_lex_state = 2}, - [527] = {.lex_state = 12, .external_lex_state = 2}, - [528] = {.lex_state = 12, .external_lex_state = 2}, - [529] = {.lex_state = 12, .external_lex_state = 2}, - [530] = {.lex_state = 12, .external_lex_state = 2}, - [531] = {.lex_state = 12, .external_lex_state = 2}, - [532] = {.lex_state = 12, .external_lex_state = 2}, - [533] = {.lex_state = 5, .external_lex_state = 2}, - [534] = {.lex_state = 5, .external_lex_state = 2}, - [535] = {.lex_state = 7, .external_lex_state = 3}, - [536] = {.lex_state = 7, .external_lex_state = 3}, - [537] = {.lex_state = 7, .external_lex_state = 3}, - [538] = {.lex_state = 7, .external_lex_state = 3}, - [539] = {.lex_state = 7, .external_lex_state = 3}, - [540] = {.lex_state = 7, .external_lex_state = 3}, - [541] = {.lex_state = 7, .external_lex_state = 3}, - [542] = {.lex_state = 11, .external_lex_state = 2}, - [543] = {.lex_state = 7, .external_lex_state = 3}, - [544] = {.lex_state = 7, .external_lex_state = 3}, - [545] = {.lex_state = 7, .external_lex_state = 3}, - [546] = {.lex_state = 12, .external_lex_state = 2}, - [547] = {.lex_state = 12, .external_lex_state = 2}, + [521] = {.lex_state = 13, .external_lex_state = 2}, + [522] = {.lex_state = 13, .external_lex_state = 2}, + [523] = {.lex_state = 13, .external_lex_state = 2}, + [524] = {.lex_state = 13, .external_lex_state = 2}, + [525] = {.lex_state = 13, .external_lex_state = 2}, + [526] = {.lex_state = 13, .external_lex_state = 2}, + [527] = {.lex_state = 13, .external_lex_state = 2}, + [528] = {.lex_state = 13, .external_lex_state = 2}, + [529] = {.lex_state = 13, .external_lex_state = 2}, + [530] = {.lex_state = 13, .external_lex_state = 2}, + [531] = {.lex_state = 13, .external_lex_state = 2}, + [532] = {.lex_state = 13, .external_lex_state = 2}, + [533] = {.lex_state = 13, .external_lex_state = 2}, + [534] = {.lex_state = 13, .external_lex_state = 2}, + [535] = {.lex_state = 13, .external_lex_state = 2}, + [536] = {.lex_state = 13, .external_lex_state = 2}, + [537] = {.lex_state = 12, .external_lex_state = 2}, + [538] = {.lex_state = 12, .external_lex_state = 2}, + [539] = {.lex_state = 12, .external_lex_state = 2}, + [540] = {.lex_state = 12, .external_lex_state = 2}, + [541] = {.lex_state = 13, .external_lex_state = 2}, + [542] = {.lex_state = 12, .external_lex_state = 2}, + [543] = {.lex_state = 13, .external_lex_state = 2}, + [544] = {.lex_state = 13, .external_lex_state = 2}, + [545] = {.lex_state = 12, .external_lex_state = 2}, + [546] = {.lex_state = 7, .external_lex_state = 3}, + [547] = {.lex_state = 5, .external_lex_state = 2}, [548] = {.lex_state = 5, .external_lex_state = 2}, - [549] = {.lex_state = 5, .external_lex_state = 2}, - [550] = {.lex_state = 12, .external_lex_state = 2}, - [551] = {.lex_state = 5, .external_lex_state = 2}, - [552] = {.lex_state = 12, .external_lex_state = 2}, + [549] = {.lex_state = 7, .external_lex_state = 3}, + [550] = {.lex_state = 7, .external_lex_state = 3}, + [551] = {.lex_state = 7, .external_lex_state = 3}, + [552] = {.lex_state = 7, .external_lex_state = 3}, [553] = {.lex_state = 7, .external_lex_state = 3}, - [554] = {.lex_state = 12, .external_lex_state = 2}, - [555] = {.lex_state = 12, .external_lex_state = 2}, - [556] = {.lex_state = 12, .external_lex_state = 2}, - [557] = {.lex_state = 12, .external_lex_state = 2}, - [558] = {.lex_state = 12, .external_lex_state = 2}, + [554] = {.lex_state = 7, .external_lex_state = 3}, + [555] = {.lex_state = 7, .external_lex_state = 3}, + [556] = {.lex_state = 11, .external_lex_state = 2}, + [557] = {.lex_state = 7, .external_lex_state = 3}, + [558] = {.lex_state = 7, .external_lex_state = 3}, [559] = {.lex_state = 12, .external_lex_state = 2}, - [560] = {.lex_state = 12, .external_lex_state = 2}, + [560] = {.lex_state = 5, .external_lex_state = 2}, [561] = {.lex_state = 12, .external_lex_state = 2}, - [562] = {.lex_state = 12, .external_lex_state = 2}, - [563] = {.lex_state = 5, .external_lex_state = 2}, + [562] = {.lex_state = 5, .external_lex_state = 2}, + [563] = {.lex_state = 7, .external_lex_state = 3}, [564] = {.lex_state = 12, .external_lex_state = 2}, [565] = {.lex_state = 12, .external_lex_state = 2}, [566] = {.lex_state = 12, .external_lex_state = 2}, - [567] = {.lex_state = 7, .external_lex_state = 3}, - [568] = {.lex_state = 5, .external_lex_state = 2}, - [569] = {.lex_state = 5, .external_lex_state = 2}, - [570] = {.lex_state = 5, .external_lex_state = 2}, - [571] = {.lex_state = 7, .external_lex_state = 3}, - [572] = {.lex_state = 5, .external_lex_state = 2}, - [573] = {.lex_state = 7, .external_lex_state = 3}, - [574] = {.lex_state = 5, .external_lex_state = 2}, - [575] = {.lex_state = 7, .external_lex_state = 3}, - [576] = {.lex_state = 5, .external_lex_state = 2}, + [567] = {.lex_state = 12, .external_lex_state = 2}, + [568] = {.lex_state = 12, .external_lex_state = 2}, + [569] = {.lex_state = 12, .external_lex_state = 2}, + [570] = {.lex_state = 12, .external_lex_state = 2}, + [571] = {.lex_state = 12, .external_lex_state = 2}, + [572] = {.lex_state = 12, .external_lex_state = 2}, + [573] = {.lex_state = 12, .external_lex_state = 2}, + [574] = {.lex_state = 12, .external_lex_state = 2}, + [575] = {.lex_state = 12, .external_lex_state = 2}, + [576] = {.lex_state = 12, .external_lex_state = 2}, [577] = {.lex_state = 5, .external_lex_state = 2}, [578] = {.lex_state = 5, .external_lex_state = 2}, - [579] = {.lex_state = 5, .external_lex_state = 2}, - [580] = {.lex_state = 5, .external_lex_state = 2}, - [581] = {.lex_state = 7, .external_lex_state = 3}, - [582] = {.lex_state = 5, .external_lex_state = 2}, - [583] = {.lex_state = 7, .external_lex_state = 3}, - [584] = {.lex_state = 5, .external_lex_state = 2}, - [585] = {.lex_state = 5, .external_lex_state = 2}, + [579] = {.lex_state = 12, .external_lex_state = 2}, + [580] = {.lex_state = 13, .external_lex_state = 2}, + [581] = {.lex_state = 5, .external_lex_state = 2}, + [582] = {.lex_state = 13, .external_lex_state = 2}, + [583] = {.lex_state = 13, .external_lex_state = 2}, + [584] = {.lex_state = 7, .external_lex_state = 3}, + [585] = {.lex_state = 7, .external_lex_state = 3}, [586] = {.lex_state = 5, .external_lex_state = 2}, [587] = {.lex_state = 5, .external_lex_state = 2}, - [588] = {.lex_state = 5, .external_lex_state = 2}, + [588] = {.lex_state = 7, .external_lex_state = 3}, [589] = {.lex_state = 5, .external_lex_state = 2}, - [590] = {.lex_state = 5, .external_lex_state = 2}, - [591] = {.lex_state = 7, .external_lex_state = 3}, + [590] = {.lex_state = 7, .external_lex_state = 3}, + [591] = {.lex_state = 13, .external_lex_state = 2}, [592] = {.lex_state = 5, .external_lex_state = 2}, [593] = {.lex_state = 5, .external_lex_state = 2}, - [594] = {.lex_state = 5, .external_lex_state = 2}, + [594] = {.lex_state = 13, .external_lex_state = 2}, [595] = {.lex_state = 5, .external_lex_state = 2}, - [596] = {.lex_state = 5, .external_lex_state = 2}, + [596] = {.lex_state = 13, .external_lex_state = 2}, [597] = {.lex_state = 5, .external_lex_state = 2}, [598] = {.lex_state = 5, .external_lex_state = 2}, - [599] = {.lex_state = 5, .external_lex_state = 2}, - [600] = {.lex_state = 5, .external_lex_state = 2}, - [601] = {.lex_state = 5, .external_lex_state = 2}, + [599] = {.lex_state = 7, .external_lex_state = 3}, + [600] = {.lex_state = 7, .external_lex_state = 3}, + [601] = {.lex_state = 7, .external_lex_state = 3}, [602] = {.lex_state = 5, .external_lex_state = 2}, [603] = {.lex_state = 5, .external_lex_state = 2}, [604] = {.lex_state = 5, .external_lex_state = 2}, [605] = {.lex_state = 5, .external_lex_state = 2}, - [606] = {.lex_state = 7, .external_lex_state = 3}, + [606] = {.lex_state = 5, .external_lex_state = 2}, [607] = {.lex_state = 5, .external_lex_state = 2}, [608] = {.lex_state = 5, .external_lex_state = 2}, [609] = {.lex_state = 5, .external_lex_state = 2}, @@ -12612,25 +12668,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [611] = {.lex_state = 5, .external_lex_state = 2}, [612] = {.lex_state = 5, .external_lex_state = 2}, [613] = {.lex_state = 5, .external_lex_state = 2}, - [614] = {.lex_state = 7, .external_lex_state = 3}, - [615] = {.lex_state = 7, .external_lex_state = 3}, - [616] = {.lex_state = 7, .external_lex_state = 3}, - [617] = {.lex_state = 7, .external_lex_state = 3}, - [618] = {.lex_state = 7, .external_lex_state = 3}, - [619] = {.lex_state = 7, .external_lex_state = 3}, - [620] = {.lex_state = 7, .external_lex_state = 3}, - [621] = {.lex_state = 7, .external_lex_state = 3}, - [622] = {.lex_state = 7, .external_lex_state = 3}, + [614] = {.lex_state = 5, .external_lex_state = 2}, + [615] = {.lex_state = 5, .external_lex_state = 2}, + [616] = {.lex_state = 5, .external_lex_state = 2}, + [617] = {.lex_state = 5, .external_lex_state = 2}, + [618] = {.lex_state = 5, .external_lex_state = 2}, + [619] = {.lex_state = 5, .external_lex_state = 2}, + [620] = {.lex_state = 5, .external_lex_state = 2}, + [621] = {.lex_state = 5, .external_lex_state = 2}, + [622] = {.lex_state = 5, .external_lex_state = 2}, [623] = {.lex_state = 7, .external_lex_state = 3}, - [624] = {.lex_state = 7, .external_lex_state = 3}, - [625] = {.lex_state = 7, .external_lex_state = 3}, - [626] = {.lex_state = 7, .external_lex_state = 3}, - [627] = {.lex_state = 7, .external_lex_state = 3}, - [628] = {.lex_state = 7, .external_lex_state = 3}, - [629] = {.lex_state = 7, .external_lex_state = 3}, - [630] = {.lex_state = 7, .external_lex_state = 3}, - [631] = {.lex_state = 7, .external_lex_state = 3}, - [632] = {.lex_state = 7, .external_lex_state = 3}, + [624] = {.lex_state = 5, .external_lex_state = 2}, + [625] = {.lex_state = 5, .external_lex_state = 2}, + [626] = {.lex_state = 5, .external_lex_state = 2}, + [627] = {.lex_state = 5, .external_lex_state = 2}, + [628] = {.lex_state = 5, .external_lex_state = 2}, + [629] = {.lex_state = 5, .external_lex_state = 2}, + [630] = {.lex_state = 5, .external_lex_state = 2}, + [631] = {.lex_state = 5, .external_lex_state = 2}, + [632] = {.lex_state = 5, .external_lex_state = 2}, [633] = {.lex_state = 7, .external_lex_state = 3}, [634] = {.lex_state = 7, .external_lex_state = 3}, [635] = {.lex_state = 7, .external_lex_state = 3}, @@ -12662,7 +12718,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [661] = {.lex_state = 7, .external_lex_state = 3}, [662] = {.lex_state = 7, .external_lex_state = 3}, [663] = {.lex_state = 7, .external_lex_state = 3}, - [664] = {.lex_state = 5, .external_lex_state = 2}, + [664] = {.lex_state = 7, .external_lex_state = 3}, [665] = {.lex_state = 7, .external_lex_state = 3}, [666] = {.lex_state = 7, .external_lex_state = 3}, [667] = {.lex_state = 7, .external_lex_state = 3}, @@ -12680,7 +12736,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [679] = {.lex_state = 7, .external_lex_state = 3}, [680] = {.lex_state = 7, .external_lex_state = 3}, [681] = {.lex_state = 7, .external_lex_state = 3}, - [682] = {.lex_state = 7, .external_lex_state = 3}, + [682] = {.lex_state = 5, .external_lex_state = 2}, [683] = {.lex_state = 7, .external_lex_state = 3}, [684] = {.lex_state = 7, .external_lex_state = 3}, [685] = {.lex_state = 7, .external_lex_state = 3}, @@ -12736,83 +12792,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [735] = {.lex_state = 7, .external_lex_state = 3}, [736] = {.lex_state = 7, .external_lex_state = 3}, [737] = {.lex_state = 7, .external_lex_state = 3}, - [738] = {.lex_state = 5, .external_lex_state = 2}, - [739] = {.lex_state = 5, .external_lex_state = 2}, - [740] = {.lex_state = 5, .external_lex_state = 2}, - [741] = {.lex_state = 5, .external_lex_state = 2}, - [742] = {.lex_state = 6, .external_lex_state = 2}, - [743] = {.lex_state = 3, .external_lex_state = 3}, - [744] = {.lex_state = 3, .external_lex_state = 3}, - [745] = {.lex_state = 3, .external_lex_state = 3}, - [746] = {.lex_state = 4, .external_lex_state = 3}, - [747] = {.lex_state = 3, .external_lex_state = 3}, - [748] = {.lex_state = 3, .external_lex_state = 3}, - [749] = {.lex_state = 3, .external_lex_state = 3}, - [750] = {.lex_state = 3, .external_lex_state = 3}, - [751] = {.lex_state = 3, .external_lex_state = 3}, - [752] = {.lex_state = 2, .external_lex_state = 3}, - [753] = {.lex_state = 3, .external_lex_state = 3}, - [754] = {.lex_state = 4, .external_lex_state = 3}, - [755] = {.lex_state = 4, .external_lex_state = 3}, - [756] = {.lex_state = 2, .external_lex_state = 3}, - [757] = {.lex_state = 3, .external_lex_state = 3}, - [758] = {.lex_state = 4, .external_lex_state = 3}, - [759] = {.lex_state = 4, .external_lex_state = 3}, - [760] = {.lex_state = 2, .external_lex_state = 3}, - [761] = {.lex_state = 2, .external_lex_state = 3}, - [762] = {.lex_state = 2, .external_lex_state = 3}, - [763] = {.lex_state = 2, .external_lex_state = 3}, - [764] = {.lex_state = 2, .external_lex_state = 3}, - [765] = {.lex_state = 2, .external_lex_state = 3}, - [766] = {.lex_state = 2, .external_lex_state = 3}, - [767] = {.lex_state = 2, .external_lex_state = 3}, - [768] = {.lex_state = 4, .external_lex_state = 3}, + [738] = {.lex_state = 7, .external_lex_state = 3}, + [739] = {.lex_state = 7, .external_lex_state = 3}, + [740] = {.lex_state = 7, .external_lex_state = 3}, + [741] = {.lex_state = 7, .external_lex_state = 3}, + [742] = {.lex_state = 7, .external_lex_state = 3}, + [743] = {.lex_state = 7, .external_lex_state = 3}, + [744] = {.lex_state = 7, .external_lex_state = 3}, + [745] = {.lex_state = 7, .external_lex_state = 3}, + [746] = {.lex_state = 7, .external_lex_state = 3}, + [747] = {.lex_state = 7, .external_lex_state = 3}, + [748] = {.lex_state = 7, .external_lex_state = 3}, + [749] = {.lex_state = 7, .external_lex_state = 3}, + [750] = {.lex_state = 7, .external_lex_state = 3}, + [751] = {.lex_state = 7, .external_lex_state = 3}, + [752] = {.lex_state = 7, .external_lex_state = 3}, + [753] = {.lex_state = 7, .external_lex_state = 3}, + [754] = {.lex_state = 7, .external_lex_state = 3}, + [755] = {.lex_state = 7, .external_lex_state = 3}, + [756] = {.lex_state = 7, .external_lex_state = 3}, + [757] = {.lex_state = 5, .external_lex_state = 2}, + [758] = {.lex_state = 5, .external_lex_state = 2}, + [759] = {.lex_state = 5, .external_lex_state = 2}, + [760] = {.lex_state = 5, .external_lex_state = 2}, + [761] = {.lex_state = 6, .external_lex_state = 2}, + [762] = {.lex_state = 3, .external_lex_state = 3}, + [763] = {.lex_state = 3, .external_lex_state = 3}, + [764] = {.lex_state = 3, .external_lex_state = 3}, + [765] = {.lex_state = 4, .external_lex_state = 3}, + [766] = {.lex_state = 3, .external_lex_state = 3}, + [767] = {.lex_state = 4, .external_lex_state = 3}, + [768] = {.lex_state = 2, .external_lex_state = 3}, [769] = {.lex_state = 4, .external_lex_state = 3}, - [770] = {.lex_state = 4, .external_lex_state = 3}, - [771] = {.lex_state = 4, .external_lex_state = 3}, - [772] = {.lex_state = 2, .external_lex_state = 3}, - [773] = {.lex_state = 2, .external_lex_state = 3}, + [770] = {.lex_state = 3, .external_lex_state = 3}, + [771] = {.lex_state = 3, .external_lex_state = 3}, + [772] = {.lex_state = 3, .external_lex_state = 3}, + [773] = {.lex_state = 3, .external_lex_state = 3}, [774] = {.lex_state = 4, .external_lex_state = 3}, - [775] = {.lex_state = 4, .external_lex_state = 3}, - [776] = {.lex_state = 4, .external_lex_state = 3}, + [775] = {.lex_state = 3, .external_lex_state = 3}, + [776] = {.lex_state = 3, .external_lex_state = 3}, [777] = {.lex_state = 4, .external_lex_state = 3}, [778] = {.lex_state = 2, .external_lex_state = 3}, - [779] = {.lex_state = 4, .external_lex_state = 3}, - [780] = {.lex_state = 4, .external_lex_state = 3}, - [781] = {.lex_state = 4, .external_lex_state = 3}, - [782] = {.lex_state = 4, .external_lex_state = 3}, - [783] = {.lex_state = 4, .external_lex_state = 3}, - [784] = {.lex_state = 4, .external_lex_state = 3}, - [785] = {.lex_state = 4, .external_lex_state = 3}, + [779] = {.lex_state = 2, .external_lex_state = 3}, + [780] = {.lex_state = 2, .external_lex_state = 3}, + [781] = {.lex_state = 2, .external_lex_state = 3}, + [782] = {.lex_state = 2, .external_lex_state = 3}, + [783] = {.lex_state = 2, .external_lex_state = 3}, + [784] = {.lex_state = 2, .external_lex_state = 3}, + [785] = {.lex_state = 2, .external_lex_state = 3}, [786] = {.lex_state = 2, .external_lex_state = 3}, [787] = {.lex_state = 4, .external_lex_state = 3}, [788] = {.lex_state = 4, .external_lex_state = 3}, [789] = {.lex_state = 4, .external_lex_state = 3}, - [790] = {.lex_state = 2, .external_lex_state = 3}, + [790] = {.lex_state = 4, .external_lex_state = 3}, [791] = {.lex_state = 4, .external_lex_state = 3}, - [792] = {.lex_state = 10, .external_lex_state = 3}, + [792] = {.lex_state = 4, .external_lex_state = 3}, [793] = {.lex_state = 4, .external_lex_state = 3}, [794] = {.lex_state = 4, .external_lex_state = 3}, [795] = {.lex_state = 4, .external_lex_state = 3}, [796] = {.lex_state = 4, .external_lex_state = 3}, [797] = {.lex_state = 4, .external_lex_state = 3}, - [798] = {.lex_state = 4, .external_lex_state = 3}, - [799] = {.lex_state = 2, .external_lex_state = 3}, + [798] = {.lex_state = 2, .external_lex_state = 3}, + [799] = {.lex_state = 4, .external_lex_state = 3}, [800] = {.lex_state = 4, .external_lex_state = 3}, [801] = {.lex_state = 4, .external_lex_state = 3}, - [802] = {.lex_state = 4, .external_lex_state = 3}, - [803] = {.lex_state = 2, .external_lex_state = 3}, - [804] = {.lex_state = 2, .external_lex_state = 3}, + [802] = {.lex_state = 2, .external_lex_state = 3}, + [803] = {.lex_state = 4, .external_lex_state = 3}, + [804] = {.lex_state = 4, .external_lex_state = 3}, [805] = {.lex_state = 4, .external_lex_state = 3}, - [806] = {.lex_state = 2, .external_lex_state = 3}, + [806] = {.lex_state = 4, .external_lex_state = 3}, [807] = {.lex_state = 4, .external_lex_state = 3}, - [808] = {.lex_state = 2, .external_lex_state = 3}, + [808] = {.lex_state = 4, .external_lex_state = 3}, [809] = {.lex_state = 4, .external_lex_state = 3}, [810] = {.lex_state = 4, .external_lex_state = 3}, [811] = {.lex_state = 4, .external_lex_state = 3}, [812] = {.lex_state = 4, .external_lex_state = 3}, - [813] = {.lex_state = 4, .external_lex_state = 3}, - [814] = {.lex_state = 4, .external_lex_state = 3}, + [813] = {.lex_state = 2, .external_lex_state = 3}, + [814] = {.lex_state = 2, .external_lex_state = 3}, [815] = {.lex_state = 4, .external_lex_state = 3}, [816] = {.lex_state = 4, .external_lex_state = 3}, [817] = {.lex_state = 4, .external_lex_state = 3}, @@ -12825,19 +12881,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [824] = {.lex_state = 4, .external_lex_state = 3}, [825] = {.lex_state = 4, .external_lex_state = 3}, [826] = {.lex_state = 4, .external_lex_state = 3}, - [827] = {.lex_state = 4, .external_lex_state = 3}, + [827] = {.lex_state = 2, .external_lex_state = 3}, [828] = {.lex_state = 4, .external_lex_state = 3}, [829] = {.lex_state = 4, .external_lex_state = 3}, - [830] = {.lex_state = 4, .external_lex_state = 3}, - [831] = {.lex_state = 2, .external_lex_state = 3}, - [832] = {.lex_state = 4, .external_lex_state = 3}, + [830] = {.lex_state = 2, .external_lex_state = 3}, + [831] = {.lex_state = 4, .external_lex_state = 3}, + [832] = {.lex_state = 2, .external_lex_state = 3}, [833] = {.lex_state = 4, .external_lex_state = 3}, [834] = {.lex_state = 4, .external_lex_state = 3}, [835] = {.lex_state = 4, .external_lex_state = 3}, [836] = {.lex_state = 4, .external_lex_state = 3}, - [837] = {.lex_state = 4, .external_lex_state = 3}, - [838] = {.lex_state = 2, .external_lex_state = 3}, - [839] = {.lex_state = 4, .external_lex_state = 3}, + [837] = {.lex_state = 2, .external_lex_state = 3}, + [838] = {.lex_state = 4, .external_lex_state = 3}, + [839] = {.lex_state = 2, .external_lex_state = 3}, [840] = {.lex_state = 4, .external_lex_state = 3}, [841] = {.lex_state = 4, .external_lex_state = 3}, [842] = {.lex_state = 4, .external_lex_state = 3}, @@ -12849,42 +12905,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [848] = {.lex_state = 2, .external_lex_state = 3}, [849] = {.lex_state = 4, .external_lex_state = 3}, [850] = {.lex_state = 2, .external_lex_state = 3}, - [851] = {.lex_state = 2, .external_lex_state = 3}, + [851] = {.lex_state = 4, .external_lex_state = 3}, [852] = {.lex_state = 4, .external_lex_state = 3}, [853] = {.lex_state = 4, .external_lex_state = 3}, - [854] = {.lex_state = 4, .external_lex_state = 3}, - [855] = {.lex_state = 2, .external_lex_state = 3}, + [854] = {.lex_state = 2, .external_lex_state = 3}, + [855] = {.lex_state = 4, .external_lex_state = 3}, [856] = {.lex_state = 4, .external_lex_state = 3}, - [857] = {.lex_state = 2, .external_lex_state = 3}, - [858] = {.lex_state = 4, .external_lex_state = 3}, + [857] = {.lex_state = 4, .external_lex_state = 3}, + [858] = {.lex_state = 2, .external_lex_state = 3}, [859] = {.lex_state = 4, .external_lex_state = 3}, [860] = {.lex_state = 4, .external_lex_state = 3}, [861] = {.lex_state = 4, .external_lex_state = 3}, [862] = {.lex_state = 4, .external_lex_state = 3}, [863] = {.lex_state = 4, .external_lex_state = 3}, [864] = {.lex_state = 4, .external_lex_state = 3}, - [865] = {.lex_state = 2, .external_lex_state = 3}, + [865] = {.lex_state = 10, .external_lex_state = 3}, [866] = {.lex_state = 2, .external_lex_state = 3}, [867] = {.lex_state = 4, .external_lex_state = 3}, [868] = {.lex_state = 4, .external_lex_state = 3}, [869] = {.lex_state = 4, .external_lex_state = 3}, [870] = {.lex_state = 4, .external_lex_state = 3}, [871] = {.lex_state = 4, .external_lex_state = 3}, - [872] = {.lex_state = 2, .external_lex_state = 3}, + [872] = {.lex_state = 4, .external_lex_state = 3}, [873] = {.lex_state = 4, .external_lex_state = 3}, [874] = {.lex_state = 4, .external_lex_state = 3}, - [875] = {.lex_state = 4, .external_lex_state = 3}, + [875] = {.lex_state = 2, .external_lex_state = 3}, [876] = {.lex_state = 4, .external_lex_state = 3}, [877] = {.lex_state = 4, .external_lex_state = 3}, [878] = {.lex_state = 4, .external_lex_state = 3}, [879] = {.lex_state = 4, .external_lex_state = 3}, - [880] = {.lex_state = 2, .external_lex_state = 3}, + [880] = {.lex_state = 4, .external_lex_state = 3}, [881] = {.lex_state = 4, .external_lex_state = 3}, [882] = {.lex_state = 4, .external_lex_state = 3}, [883] = {.lex_state = 4, .external_lex_state = 3}, [884] = {.lex_state = 2, .external_lex_state = 3}, [885] = {.lex_state = 4, .external_lex_state = 3}, - [886] = {.lex_state = 2, .external_lex_state = 3}, + [886] = {.lex_state = 4, .external_lex_state = 3}, [887] = {.lex_state = 4, .external_lex_state = 3}, [888] = {.lex_state = 4, .external_lex_state = 3}, [889] = {.lex_state = 4, .external_lex_state = 3}, @@ -12894,7 +12950,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [893] = {.lex_state = 4, .external_lex_state = 3}, [894] = {.lex_state = 4, .external_lex_state = 3}, [895] = {.lex_state = 4, .external_lex_state = 3}, - [896] = {.lex_state = 2, .external_lex_state = 3}, + [896] = {.lex_state = 4, .external_lex_state = 3}, [897] = {.lex_state = 4, .external_lex_state = 3}, [898] = {.lex_state = 4, .external_lex_state = 3}, [899] = {.lex_state = 4, .external_lex_state = 3}, @@ -12903,21 +12959,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [902] = {.lex_state = 4, .external_lex_state = 3}, [903] = {.lex_state = 4, .external_lex_state = 3}, [904] = {.lex_state = 4, .external_lex_state = 3}, - [905] = {.lex_state = 4, .external_lex_state = 3}, + [905] = {.lex_state = 2, .external_lex_state = 3}, [906] = {.lex_state = 4, .external_lex_state = 3}, - [907] = {.lex_state = 2, .external_lex_state = 3}, - [908] = {.lex_state = 4, .external_lex_state = 3}, + [907] = {.lex_state = 4, .external_lex_state = 3}, + [908] = {.lex_state = 2, .external_lex_state = 3}, [909] = {.lex_state = 4, .external_lex_state = 3}, [910] = {.lex_state = 4, .external_lex_state = 3}, [911] = {.lex_state = 4, .external_lex_state = 3}, - [912] = {.lex_state = 4, .external_lex_state = 3}, + [912] = {.lex_state = 2, .external_lex_state = 3}, [913] = {.lex_state = 4, .external_lex_state = 3}, [914] = {.lex_state = 4, .external_lex_state = 3}, [915] = {.lex_state = 4, .external_lex_state = 3}, [916] = {.lex_state = 4, .external_lex_state = 3}, [917] = {.lex_state = 4, .external_lex_state = 3}, [918] = {.lex_state = 4, .external_lex_state = 3}, - [919] = {.lex_state = 4, .external_lex_state = 3}, + [919] = {.lex_state = 2, .external_lex_state = 3}, [920] = {.lex_state = 4, .external_lex_state = 3}, [921] = {.lex_state = 4, .external_lex_state = 3}, [922] = {.lex_state = 4, .external_lex_state = 3}, @@ -12929,9 +12985,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [928] = {.lex_state = 4, .external_lex_state = 3}, [929] = {.lex_state = 4, .external_lex_state = 3}, [930] = {.lex_state = 4, .external_lex_state = 3}, - [931] = {.lex_state = 2, .external_lex_state = 3}, + [931] = {.lex_state = 4, .external_lex_state = 3}, [932] = {.lex_state = 4, .external_lex_state = 3}, - [933] = {.lex_state = 4, .external_lex_state = 3}, + [933] = {.lex_state = 2, .external_lex_state = 3}, [934] = {.lex_state = 4, .external_lex_state = 3}, [935] = {.lex_state = 4, .external_lex_state = 3}, [936] = {.lex_state = 4, .external_lex_state = 3}, @@ -12944,23 +13000,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [943] = {.lex_state = 4, .external_lex_state = 3}, [944] = {.lex_state = 4, .external_lex_state = 3}, [945] = {.lex_state = 4, .external_lex_state = 3}, - [946] = {.lex_state = 2, .external_lex_state = 3}, - [947] = {.lex_state = 4, .external_lex_state = 3}, + [946] = {.lex_state = 4, .external_lex_state = 3}, + [947] = {.lex_state = 2, .external_lex_state = 3}, [948] = {.lex_state = 4, .external_lex_state = 3}, [949] = {.lex_state = 4, .external_lex_state = 3}, - [950] = {.lex_state = 4, .external_lex_state = 3}, + [950] = {.lex_state = 2, .external_lex_state = 3}, [951] = {.lex_state = 4, .external_lex_state = 3}, [952] = {.lex_state = 4, .external_lex_state = 3}, [953] = {.lex_state = 4, .external_lex_state = 3}, [954] = {.lex_state = 4, .external_lex_state = 3}, [955] = {.lex_state = 4, .external_lex_state = 3}, [956] = {.lex_state = 4, .external_lex_state = 3}, - [957] = {.lex_state = 4, .external_lex_state = 3}, + [957] = {.lex_state = 2, .external_lex_state = 3}, [958] = {.lex_state = 4, .external_lex_state = 3}, [959] = {.lex_state = 4, .external_lex_state = 3}, - [960] = {.lex_state = 4, .external_lex_state = 3}, + [960] = {.lex_state = 2, .external_lex_state = 3}, [961] = {.lex_state = 4, .external_lex_state = 3}, - [962] = {.lex_state = 4, .external_lex_state = 3}, + [962] = {.lex_state = 2, .external_lex_state = 3}, [963] = {.lex_state = 4, .external_lex_state = 3}, [964] = {.lex_state = 4, .external_lex_state = 3}, [965] = {.lex_state = 4, .external_lex_state = 3}, @@ -12973,7 +13029,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [972] = {.lex_state = 4, .external_lex_state = 3}, [973] = {.lex_state = 4, .external_lex_state = 3}, [974] = {.lex_state = 4, .external_lex_state = 3}, - [975] = {.lex_state = 4, .external_lex_state = 3}, + [975] = {.lex_state = 2, .external_lex_state = 3}, [976] = {.lex_state = 4, .external_lex_state = 3}, [977] = {.lex_state = 4, .external_lex_state = 3}, [978] = {.lex_state = 4, .external_lex_state = 3}, @@ -12985,10 +13041,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [984] = {.lex_state = 4, .external_lex_state = 3}, [985] = {.lex_state = 4, .external_lex_state = 3}, [986] = {.lex_state = 4, .external_lex_state = 3}, - [987] = {.lex_state = 2, .external_lex_state = 3}, + [987] = {.lex_state = 4, .external_lex_state = 3}, [988] = {.lex_state = 4, .external_lex_state = 3}, - [989] = {.lex_state = 2, .external_lex_state = 3}, - [990] = {.lex_state = 2, .external_lex_state = 3}, + [989] = {.lex_state = 4, .external_lex_state = 3}, + [990] = {.lex_state = 4, .external_lex_state = 3}, [991] = {.lex_state = 4, .external_lex_state = 3}, [992] = {.lex_state = 4, .external_lex_state = 3}, [993] = {.lex_state = 4, .external_lex_state = 3}, @@ -13001,48 +13057,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1000] = {.lex_state = 4, .external_lex_state = 3}, [1001] = {.lex_state = 4, .external_lex_state = 3}, [1002] = {.lex_state = 4, .external_lex_state = 3}, - [1003] = {.lex_state = 4, .external_lex_state = 3}, + [1003] = {.lex_state = 3, .external_lex_state = 3}, [1004] = {.lex_state = 4, .external_lex_state = 3}, [1005] = {.lex_state = 4, .external_lex_state = 3}, - [1006] = {.lex_state = 2, .external_lex_state = 3}, - [1007] = {.lex_state = 4, .external_lex_state = 3}, + [1006] = {.lex_state = 4, .external_lex_state = 3}, + [1007] = {.lex_state = 2, .external_lex_state = 3}, [1008] = {.lex_state = 4, .external_lex_state = 3}, [1009] = {.lex_state = 4, .external_lex_state = 3}, [1010] = {.lex_state = 4, .external_lex_state = 3}, [1011] = {.lex_state = 4, .external_lex_state = 3}, - [1012] = {.lex_state = 4, .external_lex_state = 3}, + [1012] = {.lex_state = 2, .external_lex_state = 3}, [1013] = {.lex_state = 4, .external_lex_state = 3}, [1014] = {.lex_state = 4, .external_lex_state = 3}, [1015] = {.lex_state = 4, .external_lex_state = 3}, - [1016] = {.lex_state = 2, .external_lex_state = 3}, - [1017] = {.lex_state = 2, .external_lex_state = 3}, - [1018] = {.lex_state = 4, .external_lex_state = 3}, - [1019] = {.lex_state = 4, .external_lex_state = 3}, + [1016] = {.lex_state = 4, .external_lex_state = 3}, + [1017] = {.lex_state = 4, .external_lex_state = 3}, + [1018] = {.lex_state = 2, .external_lex_state = 3}, + [1019] = {.lex_state = 2, .external_lex_state = 3}, [1020] = {.lex_state = 4, .external_lex_state = 3}, - [1021] = {.lex_state = 4, .external_lex_state = 3}, - [1022] = {.lex_state = 3, .external_lex_state = 3}, - [1023] = {.lex_state = 4, .external_lex_state = 3}, + [1021] = {.lex_state = 2, .external_lex_state = 3}, + [1022] = {.lex_state = 4, .external_lex_state = 3}, + [1023] = {.lex_state = 2, .external_lex_state = 3}, [1024] = {.lex_state = 4, .external_lex_state = 3}, [1025] = {.lex_state = 4, .external_lex_state = 3}, - [1026] = {.lex_state = 2, .external_lex_state = 3}, - [1027] = {.lex_state = 2, .external_lex_state = 3}, - [1028] = {.lex_state = 2, .external_lex_state = 3}, - [1029] = {.lex_state = 2, .external_lex_state = 3}, - [1030] = {.lex_state = 5, .external_lex_state = 2}, - [1031] = {.lex_state = 2, .external_lex_state = 3}, - [1032] = {.lex_state = 2, .external_lex_state = 3}, - [1033] = {.lex_state = 2, .external_lex_state = 3}, - [1034] = {.lex_state = 2, .external_lex_state = 3}, - [1035] = {.lex_state = 2, .external_lex_state = 3}, - [1036] = {.lex_state = 2, .external_lex_state = 3}, - [1037] = {.lex_state = 2, .external_lex_state = 3}, - [1038] = {.lex_state = 2, .external_lex_state = 3}, - [1039] = {.lex_state = 2, .external_lex_state = 3}, - [1040] = {.lex_state = 2, .external_lex_state = 3}, - [1041] = {.lex_state = 2, .external_lex_state = 3}, - [1042] = {.lex_state = 2, .external_lex_state = 3}, - [1043] = {.lex_state = 2, .external_lex_state = 3}, - [1044] = {.lex_state = 2, .external_lex_state = 3}, + [1026] = {.lex_state = 4, .external_lex_state = 3}, + [1027] = {.lex_state = 4, .external_lex_state = 3}, + [1028] = {.lex_state = 4, .external_lex_state = 3}, + [1029] = {.lex_state = 4, .external_lex_state = 3}, + [1030] = {.lex_state = 4, .external_lex_state = 3}, + [1031] = {.lex_state = 4, .external_lex_state = 3}, + [1032] = {.lex_state = 4, .external_lex_state = 3}, + [1033] = {.lex_state = 4, .external_lex_state = 3}, + [1034] = {.lex_state = 4, .external_lex_state = 3}, + [1035] = {.lex_state = 4, .external_lex_state = 3}, + [1036] = {.lex_state = 4, .external_lex_state = 3}, + [1037] = {.lex_state = 4, .external_lex_state = 3}, + [1038] = {.lex_state = 4, .external_lex_state = 3}, + [1039] = {.lex_state = 4, .external_lex_state = 3}, + [1040] = {.lex_state = 4, .external_lex_state = 3}, + [1041] = {.lex_state = 4, .external_lex_state = 3}, + [1042] = {.lex_state = 4, .external_lex_state = 3}, + [1043] = {.lex_state = 4, .external_lex_state = 3}, + [1044] = {.lex_state = 4, .external_lex_state = 3}, [1045] = {.lex_state = 2, .external_lex_state = 3}, [1046] = {.lex_state = 2, .external_lex_state = 3}, [1047] = {.lex_state = 2, .external_lex_state = 3}, @@ -13052,48 +13108,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1051] = {.lex_state = 2, .external_lex_state = 3}, [1052] = {.lex_state = 2, .external_lex_state = 3}, [1053] = {.lex_state = 2, .external_lex_state = 3}, - [1054] = {.lex_state = 7, .external_lex_state = 3}, + [1054] = {.lex_state = 2, .external_lex_state = 3}, [1055] = {.lex_state = 2, .external_lex_state = 3}, [1056] = {.lex_state = 2, .external_lex_state = 3}, [1057] = {.lex_state = 2, .external_lex_state = 3}, - [1058] = {.lex_state = 7, .external_lex_state = 3}, + [1058] = {.lex_state = 2, .external_lex_state = 3}, [1059] = {.lex_state = 2, .external_lex_state = 3}, [1060] = {.lex_state = 2, .external_lex_state = 3}, [1061] = {.lex_state = 2, .external_lex_state = 3}, [1062] = {.lex_state = 2, .external_lex_state = 3}, [1063] = {.lex_state = 2, .external_lex_state = 3}, - [1064] = {.lex_state = 7, .external_lex_state = 3}, - [1065] = {.lex_state = 2, .external_lex_state = 3}, + [1064] = {.lex_state = 2, .external_lex_state = 3}, + [1065] = {.lex_state = 7, .external_lex_state = 3}, [1066] = {.lex_state = 2, .external_lex_state = 3}, [1067] = {.lex_state = 2, .external_lex_state = 3}, - [1068] = {.lex_state = 7, .external_lex_state = 3}, + [1068] = {.lex_state = 2, .external_lex_state = 3}, [1069] = {.lex_state = 2, .external_lex_state = 3}, [1070] = {.lex_state = 2, .external_lex_state = 3}, [1071] = {.lex_state = 2, .external_lex_state = 3}, [1072] = {.lex_state = 2, .external_lex_state = 3}, - [1073] = {.lex_state = 2, .external_lex_state = 3}, - [1074] = {.lex_state = 7, .external_lex_state = 3}, + [1073] = {.lex_state = 7, .external_lex_state = 3}, + [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, - [1076] = {.lex_state = 7, .external_lex_state = 3}, - [1077] = {.lex_state = 7, .external_lex_state = 3}, + [1076] = {.lex_state = 2, .external_lex_state = 3}, + [1077] = {.lex_state = 2, .external_lex_state = 3}, [1078] = {.lex_state = 2, .external_lex_state = 3}, [1079] = {.lex_state = 2, .external_lex_state = 3}, [1080] = {.lex_state = 2, .external_lex_state = 3}, [1081] = {.lex_state = 2, .external_lex_state = 3}, - [1082] = {.lex_state = 2, .external_lex_state = 3}, - [1083] = {.lex_state = 2, .external_lex_state = 3}, + [1082] = {.lex_state = 7, .external_lex_state = 3}, + [1083] = {.lex_state = 7, .external_lex_state = 3}, [1084] = {.lex_state = 2, .external_lex_state = 3}, [1085] = {.lex_state = 2, .external_lex_state = 3}, [1086] = {.lex_state = 2, .external_lex_state = 3}, - [1087] = {.lex_state = 7, .external_lex_state = 3}, + [1087] = {.lex_state = 2, .external_lex_state = 3}, [1088] = {.lex_state = 2, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, - [1090] = {.lex_state = 5, .external_lex_state = 2}, + [1090] = {.lex_state = 2, .external_lex_state = 3}, [1091] = {.lex_state = 2, .external_lex_state = 3}, [1092] = {.lex_state = 2, .external_lex_state = 3}, [1093] = {.lex_state = 2, .external_lex_state = 3}, - [1094] = {.lex_state = 2, .external_lex_state = 3}, - [1095] = {.lex_state = 7, .external_lex_state = 3}, + [1094] = {.lex_state = 7, .external_lex_state = 3}, + [1095] = {.lex_state = 2, .external_lex_state = 3}, [1096] = {.lex_state = 2, .external_lex_state = 3}, [1097] = {.lex_state = 2, .external_lex_state = 3}, [1098] = {.lex_state = 2, .external_lex_state = 3}, @@ -13106,7 +13162,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1105] = {.lex_state = 2, .external_lex_state = 3}, [1106] = {.lex_state = 2, .external_lex_state = 3}, [1107] = {.lex_state = 2, .external_lex_state = 3}, - [1108] = {.lex_state = 2, .external_lex_state = 3}, + [1108] = {.lex_state = 7, .external_lex_state = 3}, [1109] = {.lex_state = 2, .external_lex_state = 3}, [1110] = {.lex_state = 2, .external_lex_state = 3}, [1111] = {.lex_state = 2, .external_lex_state = 3}, @@ -13125,87 +13181,87 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1124] = {.lex_state = 2, .external_lex_state = 3}, [1125] = {.lex_state = 2, .external_lex_state = 3}, [1126] = {.lex_state = 2, .external_lex_state = 3}, - [1127] = {.lex_state = 2, .external_lex_state = 3}, - [1128] = {.lex_state = 5, .external_lex_state = 2}, + [1127] = {.lex_state = 5, .external_lex_state = 2}, + [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, [1131] = {.lex_state = 2, .external_lex_state = 3}, [1132] = {.lex_state = 2, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, [1134] = {.lex_state = 2, .external_lex_state = 3}, - [1135] = {.lex_state = 2, .external_lex_state = 3}, + [1135] = {.lex_state = 7, .external_lex_state = 3}, [1136] = {.lex_state = 2, .external_lex_state = 3}, [1137] = {.lex_state = 2, .external_lex_state = 3}, [1138] = {.lex_state = 2, .external_lex_state = 3}, [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 5, .external_lex_state = 2}, + [1140] = {.lex_state = 7, .external_lex_state = 3}, [1141] = {.lex_state = 2, .external_lex_state = 3}, - [1142] = {.lex_state = 2, .external_lex_state = 3}, + [1142] = {.lex_state = 5, .external_lex_state = 2}, [1143] = {.lex_state = 2, .external_lex_state = 3}, - [1144] = {.lex_state = 2, .external_lex_state = 3}, + [1144] = {.lex_state = 7, .external_lex_state = 3}, [1145] = {.lex_state = 2, .external_lex_state = 3}, [1146] = {.lex_state = 2, .external_lex_state = 3}, [1147] = {.lex_state = 2, .external_lex_state = 3}, - [1148] = {.lex_state = 2, .external_lex_state = 3}, - [1149] = {.lex_state = 7, .external_lex_state = 3}, - [1150] = {.lex_state = 7, .external_lex_state = 3}, - [1151] = {.lex_state = 7, .external_lex_state = 3}, - [1152] = {.lex_state = 5, .external_lex_state = 2}, - [1153] = {.lex_state = 7, .external_lex_state = 3}, + [1148] = {.lex_state = 5, .external_lex_state = 2}, + [1149] = {.lex_state = 5, .external_lex_state = 2}, + [1150] = {.lex_state = 2, .external_lex_state = 3}, + [1151] = {.lex_state = 2, .external_lex_state = 3}, + [1152] = {.lex_state = 2, .external_lex_state = 3}, + [1153] = {.lex_state = 2, .external_lex_state = 3}, [1154] = {.lex_state = 2, .external_lex_state = 3}, - [1155] = {.lex_state = 7, .external_lex_state = 3}, - [1156] = {.lex_state = 7, .external_lex_state = 3}, - [1157] = {.lex_state = 7, .external_lex_state = 3}, - [1158] = {.lex_state = 7, .external_lex_state = 3}, + [1155] = {.lex_state = 2, .external_lex_state = 3}, + [1156] = {.lex_state = 2, .external_lex_state = 3}, + [1157] = {.lex_state = 2, .external_lex_state = 3}, + [1158] = {.lex_state = 2, .external_lex_state = 3}, [1159] = {.lex_state = 2, .external_lex_state = 3}, - [1160] = {.lex_state = 5, .external_lex_state = 2}, - [1161] = {.lex_state = 5, .external_lex_state = 2}, - [1162] = {.lex_state = 5, .external_lex_state = 2}, + [1160] = {.lex_state = 2, .external_lex_state = 3}, + [1161] = {.lex_state = 2, .external_lex_state = 3}, + [1162] = {.lex_state = 2, .external_lex_state = 3}, [1163] = {.lex_state = 2, .external_lex_state = 3}, - [1164] = {.lex_state = 5, .external_lex_state = 2}, - [1165] = {.lex_state = 7, .external_lex_state = 3}, + [1164] = {.lex_state = 2, .external_lex_state = 3}, + [1165] = {.lex_state = 2, .external_lex_state = 3}, [1166] = {.lex_state = 2, .external_lex_state = 3}, [1167] = {.lex_state = 2, .external_lex_state = 3}, - [1168] = {.lex_state = 2, .external_lex_state = 3}, - [1169] = {.lex_state = 2, .external_lex_state = 3}, - [1170] = {.lex_state = 2, .external_lex_state = 3}, - [1171] = {.lex_state = 7, .external_lex_state = 3}, + [1168] = {.lex_state = 7, .external_lex_state = 3}, + [1169] = {.lex_state = 7, .external_lex_state = 3}, + [1170] = {.lex_state = 7, .external_lex_state = 3}, + [1171] = {.lex_state = 2, .external_lex_state = 3}, [1172] = {.lex_state = 7, .external_lex_state = 3}, [1173] = {.lex_state = 7, .external_lex_state = 3}, [1174] = {.lex_state = 7, .external_lex_state = 3}, - [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1175] = {.lex_state = 7, .external_lex_state = 3}, + [1176] = {.lex_state = 5, .external_lex_state = 2}, [1177] = {.lex_state = 7, .external_lex_state = 3}, - [1178] = {.lex_state = 2, .external_lex_state = 3}, + [1178] = {.lex_state = 5, .external_lex_state = 2}, [1179] = {.lex_state = 5, .external_lex_state = 2}, - [1180] = {.lex_state = 7, .external_lex_state = 3}, - [1181] = {.lex_state = 2, .external_lex_state = 3}, - [1182] = {.lex_state = 7, .external_lex_state = 3}, - [1183] = {.lex_state = 2, .external_lex_state = 3}, + [1180] = {.lex_state = 2, .external_lex_state = 3}, + [1181] = {.lex_state = 5, .external_lex_state = 2}, + [1182] = {.lex_state = 2, .external_lex_state = 3}, + [1183] = {.lex_state = 5, .external_lex_state = 2}, [1184] = {.lex_state = 2, .external_lex_state = 3}, [1185] = {.lex_state = 2, .external_lex_state = 3}, - [1186] = {.lex_state = 2, .external_lex_state = 3}, + [1186] = {.lex_state = 5, .external_lex_state = 2}, [1187] = {.lex_state = 2, .external_lex_state = 3}, [1188] = {.lex_state = 7, .external_lex_state = 3}, - [1189] = {.lex_state = 2, .external_lex_state = 3}, + [1189] = {.lex_state = 7, .external_lex_state = 3}, [1190] = {.lex_state = 2, .external_lex_state = 3}, - [1191] = {.lex_state = 2, .external_lex_state = 3}, - [1192] = {.lex_state = 2, .external_lex_state = 3}, + [1191] = {.lex_state = 7, .external_lex_state = 3}, + [1192] = {.lex_state = 7, .external_lex_state = 3}, [1193] = {.lex_state = 2, .external_lex_state = 3}, [1194] = {.lex_state = 2, .external_lex_state = 3}, [1195] = {.lex_state = 2, .external_lex_state = 3}, - [1196] = {.lex_state = 2, .external_lex_state = 3}, + [1196] = {.lex_state = 7, .external_lex_state = 3}, [1197] = {.lex_state = 2, .external_lex_state = 3}, - [1198] = {.lex_state = 2, .external_lex_state = 3}, - [1199] = {.lex_state = 2, .external_lex_state = 3}, + [1198] = {.lex_state = 7, .external_lex_state = 3}, + [1199] = {.lex_state = 7, .external_lex_state = 3}, [1200] = {.lex_state = 2, .external_lex_state = 3}, - [1201] = {.lex_state = 2, .external_lex_state = 3}, + [1201] = {.lex_state = 7, .external_lex_state = 3}, [1202] = {.lex_state = 2, .external_lex_state = 3}, [1203] = {.lex_state = 2, .external_lex_state = 3}, [1204] = {.lex_state = 2, .external_lex_state = 3}, [1205] = {.lex_state = 2, .external_lex_state = 3}, [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 2, .external_lex_state = 3}, + [1207] = {.lex_state = 7, .external_lex_state = 3}, [1208] = {.lex_state = 2, .external_lex_state = 3}, [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, @@ -13217,7 +13273,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1216] = {.lex_state = 2, .external_lex_state = 3}, [1217] = {.lex_state = 2, .external_lex_state = 3}, [1218] = {.lex_state = 2, .external_lex_state = 3}, - [1219] = {.lex_state = 2, .external_lex_state = 3}, + [1219] = {.lex_state = 7, .external_lex_state = 3}, [1220] = {.lex_state = 2, .external_lex_state = 3}, [1221] = {.lex_state = 2, .external_lex_state = 3}, [1222] = {.lex_state = 2, .external_lex_state = 3}, @@ -13262,7 +13318,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1261] = {.lex_state = 2, .external_lex_state = 3}, [1262] = {.lex_state = 2, .external_lex_state = 3}, [1263] = {.lex_state = 2, .external_lex_state = 3}, - [1264] = {.lex_state = 7, .external_lex_state = 3}, + [1264] = {.lex_state = 2, .external_lex_state = 3}, [1265] = {.lex_state = 2, .external_lex_state = 3}, [1266] = {.lex_state = 2, .external_lex_state = 3}, [1267] = {.lex_state = 2, .external_lex_state = 3}, @@ -13272,7 +13328,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1271] = {.lex_state = 2, .external_lex_state = 3}, [1272] = {.lex_state = 2, .external_lex_state = 3}, [1273] = {.lex_state = 2, .external_lex_state = 3}, - [1274] = {.lex_state = 7, .external_lex_state = 3}, + [1274] = {.lex_state = 2, .external_lex_state = 3}, [1275] = {.lex_state = 2, .external_lex_state = 3}, [1276] = {.lex_state = 2, .external_lex_state = 3}, [1277] = {.lex_state = 2, .external_lex_state = 3}, @@ -13288,222 +13344,222 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1287] = {.lex_state = 2, .external_lex_state = 3}, [1288] = {.lex_state = 2, .external_lex_state = 3}, [1289] = {.lex_state = 2, .external_lex_state = 3}, - [1290] = {.lex_state = 2, .external_lex_state = 3}, + [1290] = {.lex_state = 7, .external_lex_state = 3}, [1291] = {.lex_state = 2, .external_lex_state = 3}, [1292] = {.lex_state = 2, .external_lex_state = 3}, [1293] = {.lex_state = 2, .external_lex_state = 3}, [1294] = {.lex_state = 2, .external_lex_state = 3}, [1295] = {.lex_state = 2, .external_lex_state = 3}, - [1296] = {.lex_state = 7, .external_lex_state = 3}, + [1296] = {.lex_state = 2, .external_lex_state = 3}, [1297] = {.lex_state = 2, .external_lex_state = 3}, - [1298] = {.lex_state = 7, .external_lex_state = 3}, - [1299] = {.lex_state = 7, .external_lex_state = 3}, - [1300] = {.lex_state = 7, .external_lex_state = 3}, - [1301] = {.lex_state = 7, .external_lex_state = 3}, - [1302] = {.lex_state = 7, .external_lex_state = 3}, - [1303] = {.lex_state = 7, .external_lex_state = 3}, - [1304] = {.lex_state = 7, .external_lex_state = 3}, - [1305] = {.lex_state = 7, .external_lex_state = 3}, - [1306] = {.lex_state = 7, .external_lex_state = 3}, - [1307] = {.lex_state = 7, .external_lex_state = 3}, - [1308] = {.lex_state = 7, .external_lex_state = 3}, - [1309] = {.lex_state = 7, .external_lex_state = 3}, - [1310] = {.lex_state = 7, .external_lex_state = 3}, - [1311] = {.lex_state = 7, .external_lex_state = 3}, - [1312] = {.lex_state = 7, .external_lex_state = 3}, - [1313] = {.lex_state = 7, .external_lex_state = 3}, - [1314] = {.lex_state = 7, .external_lex_state = 3}, - [1315] = {.lex_state = 17, .external_lex_state = 3}, - [1316] = {.lex_state = 17, .external_lex_state = 3}, - [1317] = {.lex_state = 9, .external_lex_state = 3}, - [1318] = {.lex_state = 9, .external_lex_state = 3}, - [1319] = {.lex_state = 9, .external_lex_state = 3}, - [1320] = {.lex_state = 9, .external_lex_state = 3}, - [1321] = {.lex_state = 9, .external_lex_state = 3}, - [1322] = {.lex_state = 9, .external_lex_state = 3}, - [1323] = {.lex_state = 9, .external_lex_state = 3}, - [1324] = {.lex_state = 9, .external_lex_state = 3}, - [1325] = {.lex_state = 9, .external_lex_state = 3}, - [1326] = {.lex_state = 9, .external_lex_state = 3}, - [1327] = {.lex_state = 9, .external_lex_state = 3}, - [1328] = {.lex_state = 9, .external_lex_state = 3}, + [1298] = {.lex_state = 2, .external_lex_state = 3}, + [1299] = {.lex_state = 2, .external_lex_state = 3}, + [1300] = {.lex_state = 2, .external_lex_state = 3}, + [1301] = {.lex_state = 2, .external_lex_state = 3}, + [1302] = {.lex_state = 2, .external_lex_state = 3}, + [1303] = {.lex_state = 2, .external_lex_state = 3}, + [1304] = {.lex_state = 2, .external_lex_state = 3}, + [1305] = {.lex_state = 2, .external_lex_state = 3}, + [1306] = {.lex_state = 2, .external_lex_state = 3}, + [1307] = {.lex_state = 2, .external_lex_state = 3}, + [1308] = {.lex_state = 2, .external_lex_state = 3}, + [1309] = {.lex_state = 2, .external_lex_state = 3}, + [1310] = {.lex_state = 2, .external_lex_state = 3}, + [1311] = {.lex_state = 2, .external_lex_state = 3}, + [1312] = {.lex_state = 2, .external_lex_state = 3}, + [1313] = {.lex_state = 2, .external_lex_state = 3}, + [1314] = {.lex_state = 2, .external_lex_state = 3}, + [1315] = {.lex_state = 2, .external_lex_state = 3}, + [1316] = {.lex_state = 7, .external_lex_state = 3}, + [1317] = {.lex_state = 7, .external_lex_state = 3}, + [1318] = {.lex_state = 7, .external_lex_state = 3}, + [1319] = {.lex_state = 7, .external_lex_state = 3}, + [1320] = {.lex_state = 7, .external_lex_state = 3}, + [1321] = {.lex_state = 7, .external_lex_state = 3}, + [1322] = {.lex_state = 7, .external_lex_state = 3}, + [1323] = {.lex_state = 7, .external_lex_state = 3}, + [1324] = {.lex_state = 7, .external_lex_state = 3}, + [1325] = {.lex_state = 7, .external_lex_state = 3}, + [1326] = {.lex_state = 7, .external_lex_state = 3}, + [1327] = {.lex_state = 7, .external_lex_state = 3}, + [1328] = {.lex_state = 7, .external_lex_state = 3}, [1329] = {.lex_state = 7, .external_lex_state = 3}, - [1330] = {.lex_state = 17, .external_lex_state = 3}, + [1330] = {.lex_state = 7, .external_lex_state = 3}, [1331] = {.lex_state = 7, .external_lex_state = 3}, - [1332] = {.lex_state = 17, .external_lex_state = 3}, - [1333] = {.lex_state = 17, .external_lex_state = 3}, - [1334] = {.lex_state = 7, .external_lex_state = 3}, - [1335] = {.lex_state = 17, .external_lex_state = 3}, - [1336] = {.lex_state = 7, .external_lex_state = 3}, - [1337] = {.lex_state = 7, .external_lex_state = 3}, - [1338] = {.lex_state = 7, .external_lex_state = 3}, - [1339] = {.lex_state = 7, .external_lex_state = 3}, - [1340] = {.lex_state = 7, .external_lex_state = 3}, + [1332] = {.lex_state = 7, .external_lex_state = 3}, + [1333] = {.lex_state = 7, .external_lex_state = 3}, + [1334] = {.lex_state = 18, .external_lex_state = 3}, + [1335] = {.lex_state = 18, .external_lex_state = 3}, + [1336] = {.lex_state = 9, .external_lex_state = 3}, + [1337] = {.lex_state = 9, .external_lex_state = 3}, + [1338] = {.lex_state = 9, .external_lex_state = 3}, + [1339] = {.lex_state = 9, .external_lex_state = 3}, + [1340] = {.lex_state = 9, .external_lex_state = 3}, [1341] = {.lex_state = 9, .external_lex_state = 3}, - [1342] = {.lex_state = 7, .external_lex_state = 3}, - [1343] = {.lex_state = 7, .external_lex_state = 3}, + [1342] = {.lex_state = 9, .external_lex_state = 3}, + [1343] = {.lex_state = 9, .external_lex_state = 3}, [1344] = {.lex_state = 9, .external_lex_state = 3}, [1345] = {.lex_state = 9, .external_lex_state = 3}, - [1346] = {.lex_state = 7, .external_lex_state = 3}, - [1347] = {.lex_state = 7, .external_lex_state = 3}, - [1348] = {.lex_state = 7, .external_lex_state = 3}, - [1349] = {.lex_state = 17, .external_lex_state = 3}, + [1346] = {.lex_state = 9, .external_lex_state = 3}, + [1347] = {.lex_state = 9, .external_lex_state = 3}, + [1348] = {.lex_state = 18, .external_lex_state = 3}, + [1349] = {.lex_state = 18, .external_lex_state = 3}, [1350] = {.lex_state = 7, .external_lex_state = 3}, [1351] = {.lex_state = 7, .external_lex_state = 3}, - [1352] = {.lex_state = 7, .external_lex_state = 3}, - [1353] = {.lex_state = 7, .external_lex_state = 3}, + [1352] = {.lex_state = 18, .external_lex_state = 3}, + [1353] = {.lex_state = 18, .external_lex_state = 3}, [1354] = {.lex_state = 7, .external_lex_state = 3}, - [1355] = {.lex_state = 17, .external_lex_state = 3}, - [1356] = {.lex_state = 17, .external_lex_state = 3}, + [1355] = {.lex_state = 18, .external_lex_state = 3}, + [1356] = {.lex_state = 7, .external_lex_state = 3}, [1357] = {.lex_state = 7, .external_lex_state = 3}, - [1358] = {.lex_state = 17, .external_lex_state = 3}, + [1358] = {.lex_state = 7, .external_lex_state = 3}, [1359] = {.lex_state = 7, .external_lex_state = 3}, - [1360] = {.lex_state = 17, .external_lex_state = 3}, - [1361] = {.lex_state = 9, .external_lex_state = 3}, - [1362] = {.lex_state = 17, .external_lex_state = 3}, - [1363] = {.lex_state = 17, .external_lex_state = 3}, - [1364] = {.lex_state = 17, .external_lex_state = 3}, - [1365] = {.lex_state = 17, .external_lex_state = 3}, + [1360] = {.lex_state = 7, .external_lex_state = 3}, + [1361] = {.lex_state = 7, .external_lex_state = 3}, + [1362] = {.lex_state = 7, .external_lex_state = 3}, + [1363] = {.lex_state = 9, .external_lex_state = 3}, + [1364] = {.lex_state = 7, .external_lex_state = 3}, + [1365] = {.lex_state = 7, .external_lex_state = 3}, [1366] = {.lex_state = 7, .external_lex_state = 3}, - [1367] = {.lex_state = 17, .external_lex_state = 3}, - [1368] = {.lex_state = 17, .external_lex_state = 3}, + [1367] = {.lex_state = 9, .external_lex_state = 3}, + [1368] = {.lex_state = 7, .external_lex_state = 3}, [1369] = {.lex_state = 7, .external_lex_state = 3}, [1370] = {.lex_state = 7, .external_lex_state = 3}, - [1371] = {.lex_state = 17, .external_lex_state = 3}, - [1372] = {.lex_state = 17, .external_lex_state = 3}, + [1371] = {.lex_state = 9, .external_lex_state = 3}, + [1372] = {.lex_state = 7, .external_lex_state = 3}, [1373] = {.lex_state = 7, .external_lex_state = 3}, - [1374] = {.lex_state = 17, .external_lex_state = 3}, - [1375] = {.lex_state = 17, .external_lex_state = 3}, - [1376] = {.lex_state = 17, .external_lex_state = 3}, - [1377] = {.lex_state = 17, .external_lex_state = 3}, - [1378] = {.lex_state = 17, .external_lex_state = 3}, - [1379] = {.lex_state = 17, .external_lex_state = 3}, - [1380] = {.lex_state = 17, .external_lex_state = 3}, - [1381] = {.lex_state = 17, .external_lex_state = 3}, - [1382] = {.lex_state = 17, .external_lex_state = 3}, - [1383] = {.lex_state = 17, .external_lex_state = 3}, - [1384] = {.lex_state = 17, .external_lex_state = 3}, - [1385] = {.lex_state = 17, .external_lex_state = 3}, - [1386] = {.lex_state = 17, .external_lex_state = 3}, - [1387] = {.lex_state = 17, .external_lex_state = 3}, - [1388] = {.lex_state = 17, .external_lex_state = 3}, - [1389] = {.lex_state = 17, .external_lex_state = 3}, - [1390] = {.lex_state = 17, .external_lex_state = 3}, - [1391] = {.lex_state = 17, .external_lex_state = 3}, - [1392] = {.lex_state = 17, .external_lex_state = 3}, - [1393] = {.lex_state = 17, .external_lex_state = 3}, - [1394] = {.lex_state = 17, .external_lex_state = 3}, - [1395] = {.lex_state = 17, .external_lex_state = 3}, - [1396] = {.lex_state = 17, .external_lex_state = 3}, - [1397] = {.lex_state = 17, .external_lex_state = 3}, - [1398] = {.lex_state = 17, .external_lex_state = 3}, - [1399] = {.lex_state = 17, .external_lex_state = 3}, - [1400] = {.lex_state = 17, .external_lex_state = 3}, - [1401] = {.lex_state = 17, .external_lex_state = 3}, - [1402] = {.lex_state = 17, .external_lex_state = 3}, - [1403] = {.lex_state = 17, .external_lex_state = 3}, - [1404] = {.lex_state = 17, .external_lex_state = 3}, - [1405] = {.lex_state = 7, .external_lex_state = 3}, - [1406] = {.lex_state = 9, .external_lex_state = 3}, - [1407] = {.lex_state = 9, .external_lex_state = 3}, - [1408] = {.lex_state = 9, .external_lex_state = 3}, - [1409] = {.lex_state = 7, .external_lex_state = 3}, - [1410] = {.lex_state = 17, .external_lex_state = 3}, - [1411] = {.lex_state = 7, .external_lex_state = 3}, - [1412] = {.lex_state = 7, .external_lex_state = 3}, - [1413] = {.lex_state = 7, .external_lex_state = 3}, - [1414] = {.lex_state = 9, .external_lex_state = 3}, - [1415] = {.lex_state = 9, .external_lex_state = 3}, - [1416] = {.lex_state = 9, .external_lex_state = 3}, - [1417] = {.lex_state = 9, .external_lex_state = 3}, - [1418] = {.lex_state = 7, .external_lex_state = 3}, - [1419] = {.lex_state = 7, .external_lex_state = 3}, - [1420] = {.lex_state = 7, .external_lex_state = 3}, - [1421] = {.lex_state = 9, .external_lex_state = 3}, - [1422] = {.lex_state = 7, .external_lex_state = 3}, - [1423] = {.lex_state = 9, .external_lex_state = 3}, - [1424] = {.lex_state = 17, .external_lex_state = 3}, - [1425] = {.lex_state = 17, .external_lex_state = 3}, - [1426] = {.lex_state = 9, .external_lex_state = 3}, + [1374] = {.lex_state = 18, .external_lex_state = 3}, + [1375] = {.lex_state = 7, .external_lex_state = 3}, + [1376] = {.lex_state = 9, .external_lex_state = 3}, + [1377] = {.lex_state = 18, .external_lex_state = 3}, + [1378] = {.lex_state = 18, .external_lex_state = 3}, + [1379] = {.lex_state = 7, .external_lex_state = 3}, + [1380] = {.lex_state = 7, .external_lex_state = 3}, + [1381] = {.lex_state = 7, .external_lex_state = 3}, + [1382] = {.lex_state = 18, .external_lex_state = 3}, + [1383] = {.lex_state = 18, .external_lex_state = 3}, + [1384] = {.lex_state = 18, .external_lex_state = 3}, + [1385] = {.lex_state = 18, .external_lex_state = 3}, + [1386] = {.lex_state = 18, .external_lex_state = 3}, + [1387] = {.lex_state = 18, .external_lex_state = 3}, + [1388] = {.lex_state = 18, .external_lex_state = 3}, + [1389] = {.lex_state = 7, .external_lex_state = 3}, + [1390] = {.lex_state = 18, .external_lex_state = 3}, + [1391] = {.lex_state = 18, .external_lex_state = 3}, + [1392] = {.lex_state = 18, .external_lex_state = 3}, + [1393] = {.lex_state = 7, .external_lex_state = 3}, + [1394] = {.lex_state = 18, .external_lex_state = 3}, + [1395] = {.lex_state = 18, .external_lex_state = 3}, + [1396] = {.lex_state = 18, .external_lex_state = 3}, + [1397] = {.lex_state = 18, .external_lex_state = 3}, + [1398] = {.lex_state = 18, .external_lex_state = 3}, + [1399] = {.lex_state = 18, .external_lex_state = 3}, + [1400] = {.lex_state = 18, .external_lex_state = 3}, + [1401] = {.lex_state = 18, .external_lex_state = 3}, + [1402] = {.lex_state = 18, .external_lex_state = 3}, + [1403] = {.lex_state = 7, .external_lex_state = 3}, + [1404] = {.lex_state = 18, .external_lex_state = 3}, + [1405] = {.lex_state = 18, .external_lex_state = 3}, + [1406] = {.lex_state = 18, .external_lex_state = 3}, + [1407] = {.lex_state = 18, .external_lex_state = 3}, + [1408] = {.lex_state = 18, .external_lex_state = 3}, + [1409] = {.lex_state = 18, .external_lex_state = 3}, + [1410] = {.lex_state = 18, .external_lex_state = 3}, + [1411] = {.lex_state = 18, .external_lex_state = 3}, + [1412] = {.lex_state = 18, .external_lex_state = 3}, + [1413] = {.lex_state = 18, .external_lex_state = 3}, + [1414] = {.lex_state = 18, .external_lex_state = 3}, + [1415] = {.lex_state = 18, .external_lex_state = 3}, + [1416] = {.lex_state = 18, .external_lex_state = 3}, + [1417] = {.lex_state = 18, .external_lex_state = 3}, + [1418] = {.lex_state = 18, .external_lex_state = 3}, + [1419] = {.lex_state = 18, .external_lex_state = 3}, + [1420] = {.lex_state = 18, .external_lex_state = 3}, + [1421] = {.lex_state = 18, .external_lex_state = 3}, + [1422] = {.lex_state = 18, .external_lex_state = 3}, + [1423] = {.lex_state = 18, .external_lex_state = 3}, + [1424] = {.lex_state = 18, .external_lex_state = 3}, + [1425] = {.lex_state = 9, .external_lex_state = 3}, + [1426] = {.lex_state = 18, .external_lex_state = 3}, [1427] = {.lex_state = 9, .external_lex_state = 3}, [1428] = {.lex_state = 9, .external_lex_state = 3}, [1429] = {.lex_state = 9, .external_lex_state = 3}, - [1430] = {.lex_state = 17, .external_lex_state = 3}, + [1430] = {.lex_state = 9, .external_lex_state = 3}, [1431] = {.lex_state = 9, .external_lex_state = 3}, - [1432] = {.lex_state = 17, .external_lex_state = 3}, - [1433] = {.lex_state = 13, .external_lex_state = 3}, - [1434] = {.lex_state = 13, .external_lex_state = 3}, - [1435] = {.lex_state = 17, .external_lex_state = 3}, - [1436] = {.lex_state = 17, .external_lex_state = 3}, - [1437] = {.lex_state = 17, .external_lex_state = 3}, - [1438] = {.lex_state = 17, .external_lex_state = 3}, - [1439] = {.lex_state = 13, .external_lex_state = 3}, - [1440] = {.lex_state = 17, .external_lex_state = 3}, - [1441] = {.lex_state = 17, .external_lex_state = 3}, - [1442] = {.lex_state = 9, .external_lex_state = 3}, - [1443] = {.lex_state = 9, .external_lex_state = 3}, - [1444] = {.lex_state = 17, .external_lex_state = 3}, + [1432] = {.lex_state = 9, .external_lex_state = 3}, + [1433] = {.lex_state = 9, .external_lex_state = 3}, + [1434] = {.lex_state = 9, .external_lex_state = 3}, + [1435] = {.lex_state = 9, .external_lex_state = 3}, + [1436] = {.lex_state = 18, .external_lex_state = 3}, + [1437] = {.lex_state = 18, .external_lex_state = 3}, + [1438] = {.lex_state = 9, .external_lex_state = 3}, + [1439] = {.lex_state = 9, .external_lex_state = 3}, + [1440] = {.lex_state = 7, .external_lex_state = 3}, + [1441] = {.lex_state = 9, .external_lex_state = 3}, + [1442] = {.lex_state = 7, .external_lex_state = 3}, + [1443] = {.lex_state = 7, .external_lex_state = 3}, + [1444] = {.lex_state = 7, .external_lex_state = 3}, [1445] = {.lex_state = 7, .external_lex_state = 3}, - [1446] = {.lex_state = 17, .external_lex_state = 3}, - [1447] = {.lex_state = 17, .external_lex_state = 3}, - [1448] = {.lex_state = 9, .external_lex_state = 3}, - [1449] = {.lex_state = 17, .external_lex_state = 3}, - [1450] = {.lex_state = 17, .external_lex_state = 3}, - [1451] = {.lex_state = 17, .external_lex_state = 3}, - [1452] = {.lex_state = 17, .external_lex_state = 3}, - [1453] = {.lex_state = 9, .external_lex_state = 3}, - [1454] = {.lex_state = 17, .external_lex_state = 3}, - [1455] = {.lex_state = 17, .external_lex_state = 3}, - [1456] = {.lex_state = 17, .external_lex_state = 3}, - [1457] = {.lex_state = 17, .external_lex_state = 3}, - [1458] = {.lex_state = 17, .external_lex_state = 3}, - [1459] = {.lex_state = 9, .external_lex_state = 3}, - [1460] = {.lex_state = 9, .external_lex_state = 3}, + [1446] = {.lex_state = 7, .external_lex_state = 3}, + [1447] = {.lex_state = 7, .external_lex_state = 3}, + [1448] = {.lex_state = 7, .external_lex_state = 3}, + [1449] = {.lex_state = 9, .external_lex_state = 3}, + [1450] = {.lex_state = 18, .external_lex_state = 3}, + [1451] = {.lex_state = 18, .external_lex_state = 3}, + [1452] = {.lex_state = 9, .external_lex_state = 3}, + [1453] = {.lex_state = 18, .external_lex_state = 3}, + [1454] = {.lex_state = 9, .external_lex_state = 3}, + [1455] = {.lex_state = 9, .external_lex_state = 3}, + [1456] = {.lex_state = 18, .external_lex_state = 3}, + [1457] = {.lex_state = 18, .external_lex_state = 3}, + [1458] = {.lex_state = 18, .external_lex_state = 3}, + [1459] = {.lex_state = 18, .external_lex_state = 3}, + [1460] = {.lex_state = 18, .external_lex_state = 3}, [1461] = {.lex_state = 9, .external_lex_state = 3}, - [1462] = {.lex_state = 17, .external_lex_state = 3}, - [1463] = {.lex_state = 17, .external_lex_state = 3}, - [1464] = {.lex_state = 17, .external_lex_state = 3}, - [1465] = {.lex_state = 17, .external_lex_state = 3}, - [1466] = {.lex_state = 17, .external_lex_state = 3}, - [1467] = {.lex_state = 17, .external_lex_state = 3}, - [1468] = {.lex_state = 7, .external_lex_state = 3}, - [1469] = {.lex_state = 17, .external_lex_state = 3}, - [1470] = {.lex_state = 17, .external_lex_state = 3}, - [1471] = {.lex_state = 17, .external_lex_state = 3}, - [1472] = {.lex_state = 17, .external_lex_state = 3}, - [1473] = {.lex_state = 13, .external_lex_state = 3}, - [1474] = {.lex_state = 17, .external_lex_state = 3}, + [1462] = {.lex_state = 18, .external_lex_state = 3}, + [1463] = {.lex_state = 18, .external_lex_state = 3}, + [1464] = {.lex_state = 18, .external_lex_state = 3}, + [1465] = {.lex_state = 9, .external_lex_state = 3}, + [1466] = {.lex_state = 18, .external_lex_state = 3}, + [1467] = {.lex_state = 7, .external_lex_state = 3}, + [1468] = {.lex_state = 18, .external_lex_state = 3}, + [1469] = {.lex_state = 18, .external_lex_state = 3}, + [1470] = {.lex_state = 18, .external_lex_state = 3}, + [1471] = {.lex_state = 18, .external_lex_state = 3}, + [1472] = {.lex_state = 14, .external_lex_state = 3}, + [1473] = {.lex_state = 18, .external_lex_state = 3}, + [1474] = {.lex_state = 18, .external_lex_state = 3}, [1475] = {.lex_state = 7, .external_lex_state = 3}, - [1476] = {.lex_state = 7, .external_lex_state = 3}, - [1477] = {.lex_state = 7, .external_lex_state = 3}, - [1478] = {.lex_state = 1, .external_lex_state = 2}, - [1479] = {.lex_state = 7, .external_lex_state = 3}, - [1480] = {.lex_state = 7, .external_lex_state = 3}, - [1481] = {.lex_state = 14, .external_lex_state = 3}, - [1482] = {.lex_state = 1, .external_lex_state = 2}, - [1483] = {.lex_state = 9, .external_lex_state = 3}, - [1484] = {.lex_state = 7, .external_lex_state = 3}, - [1485] = {.lex_state = 17, .external_lex_state = 3}, - [1486] = {.lex_state = 7, .external_lex_state = 3}, - [1487] = {.lex_state = 7, .external_lex_state = 3}, - [1488] = {.lex_state = 7, .external_lex_state = 3}, - [1489] = {.lex_state = 7, .external_lex_state = 3}, - [1490] = {.lex_state = 17, .external_lex_state = 3}, - [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 4, .external_lex_state = 3}, - [1493] = {.lex_state = 7, .external_lex_state = 3}, + [1476] = {.lex_state = 18, .external_lex_state = 3}, + [1477] = {.lex_state = 18, .external_lex_state = 3}, + [1478] = {.lex_state = 18, .external_lex_state = 3}, + [1479] = {.lex_state = 14, .external_lex_state = 3}, + [1480] = {.lex_state = 18, .external_lex_state = 3}, + [1481] = {.lex_state = 18, .external_lex_state = 3}, + [1482] = {.lex_state = 18, .external_lex_state = 3}, + [1483] = {.lex_state = 14, .external_lex_state = 3}, + [1484] = {.lex_state = 18, .external_lex_state = 3}, + [1485] = {.lex_state = 14, .external_lex_state = 3}, + [1486] = {.lex_state = 9, .external_lex_state = 3}, + [1487] = {.lex_state = 18, .external_lex_state = 3}, + [1488] = {.lex_state = 18, .external_lex_state = 3}, + [1489] = {.lex_state = 18, .external_lex_state = 3}, + [1490] = {.lex_state = 18, .external_lex_state = 3}, + [1491] = {.lex_state = 18, .external_lex_state = 3}, + [1492] = {.lex_state = 18, .external_lex_state = 3}, + [1493] = {.lex_state = 9, .external_lex_state = 3}, [1494] = {.lex_state = 7, .external_lex_state = 3}, [1495] = {.lex_state = 7, .external_lex_state = 3}, [1496] = {.lex_state = 7, .external_lex_state = 3}, [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 17, .external_lex_state = 3}, - [1499] = {.lex_state = 7, .external_lex_state = 3}, - [1500] = {.lex_state = 14, .external_lex_state = 3}, + [1498] = {.lex_state = 7, .external_lex_state = 3}, + [1499] = {.lex_state = 9, .external_lex_state = 3}, + [1500] = {.lex_state = 18, .external_lex_state = 3}, [1501] = {.lex_state = 7, .external_lex_state = 3}, [1502] = {.lex_state = 7, .external_lex_state = 3}, - [1503] = {.lex_state = 7, .external_lex_state = 3}, - [1504] = {.lex_state = 7, .external_lex_state = 3}, - [1505] = {.lex_state = 7, .external_lex_state = 3}, + [1503] = {.lex_state = 1, .external_lex_state = 2}, + [1504] = {.lex_state = 1, .external_lex_state = 2}, + [1505] = {.lex_state = 15, .external_lex_state = 3}, [1506] = {.lex_state = 7, .external_lex_state = 3}, [1507] = {.lex_state = 7, .external_lex_state = 3}, [1508] = {.lex_state = 7, .external_lex_state = 3}, @@ -13513,114 +13569,114 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1512] = {.lex_state = 7, .external_lex_state = 3}, [1513] = {.lex_state = 7, .external_lex_state = 3}, [1514] = {.lex_state = 7, .external_lex_state = 3}, - [1515] = {.lex_state = 17, .external_lex_state = 3}, - [1516] = {.lex_state = 17, .external_lex_state = 3}, - [1517] = {.lex_state = 7, .external_lex_state = 3}, - [1518] = {.lex_state = 17, .external_lex_state = 3}, - [1519] = {.lex_state = 17, .external_lex_state = 3}, + [1515] = {.lex_state = 15, .external_lex_state = 3}, + [1516] = {.lex_state = 7, .external_lex_state = 3}, + [1517] = {.lex_state = 18, .external_lex_state = 3}, + [1518] = {.lex_state = 15, .external_lex_state = 3}, + [1519] = {.lex_state = 4, .external_lex_state = 3}, [1520] = {.lex_state = 7, .external_lex_state = 3}, [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 17, .external_lex_state = 3}, - [1523] = {.lex_state = 17, .external_lex_state = 3}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 14, .external_lex_state = 3}, - [1526] = {.lex_state = 7, .external_lex_state = 3}, + [1522] = {.lex_state = 7, .external_lex_state = 3}, + [1523] = {.lex_state = 7, .external_lex_state = 3}, + [1524] = {.lex_state = 18, .external_lex_state = 3}, + [1525] = {.lex_state = 7, .external_lex_state = 3}, + [1526] = {.lex_state = 18, .external_lex_state = 3}, [1527] = {.lex_state = 7, .external_lex_state = 3}, [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 7, .external_lex_state = 3}, + [1529] = {.lex_state = 18, .external_lex_state = 3}, [1530] = {.lex_state = 7, .external_lex_state = 3}, [1531] = {.lex_state = 7, .external_lex_state = 3}, [1532] = {.lex_state = 7, .external_lex_state = 3}, - [1533] = {.lex_state = 14, .external_lex_state = 3}, - [1534] = {.lex_state = 4, .external_lex_state = 3}, - [1535] = {.lex_state = 14, .external_lex_state = 3}, + [1533] = {.lex_state = 7, .external_lex_state = 3}, + [1534] = {.lex_state = 7, .external_lex_state = 3}, + [1535] = {.lex_state = 7, .external_lex_state = 3}, [1536] = {.lex_state = 7, .external_lex_state = 3}, [1537] = {.lex_state = 7, .external_lex_state = 3}, - [1538] = {.lex_state = 7, .external_lex_state = 3}, - [1539] = {.lex_state = 4, .external_lex_state = 3}, + [1538] = {.lex_state = 18, .external_lex_state = 3}, + [1539] = {.lex_state = 18, .external_lex_state = 3}, [1540] = {.lex_state = 7, .external_lex_state = 3}, - [1541] = {.lex_state = 14, .external_lex_state = 3}, - [1542] = {.lex_state = 14, .external_lex_state = 3}, - [1543] = {.lex_state = 14, .external_lex_state = 3}, + [1541] = {.lex_state = 7, .external_lex_state = 3}, + [1542] = {.lex_state = 7, .external_lex_state = 3}, + [1543] = {.lex_state = 18, .external_lex_state = 3}, [1544] = {.lex_state = 7, .external_lex_state = 3}, [1545] = {.lex_state = 7, .external_lex_state = 3}, - [1546] = {.lex_state = 7, .external_lex_state = 3}, + [1546] = {.lex_state = 18, .external_lex_state = 3}, [1547] = {.lex_state = 7, .external_lex_state = 3}, [1548] = {.lex_state = 7, .external_lex_state = 3}, - [1549] = {.lex_state = 7, .external_lex_state = 3}, - [1550] = {.lex_state = 7, .external_lex_state = 3}, + [1549] = {.lex_state = 4, .external_lex_state = 3}, + [1550] = {.lex_state = 0, .external_lex_state = 3}, [1551] = {.lex_state = 7, .external_lex_state = 3}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, - [1553] = {.lex_state = 0, .external_lex_state = 3}, - [1554] = {.lex_state = 13, .external_lex_state = 3}, + [1552] = {.lex_state = 4, .external_lex_state = 3}, + [1553] = {.lex_state = 14, .external_lex_state = 3}, + [1554] = {.lex_state = 7, .external_lex_state = 3}, [1555] = {.lex_state = 7, .external_lex_state = 3}, - [1556] = {.lex_state = 14, .external_lex_state = 3}, + [1556] = {.lex_state = 7, .external_lex_state = 3}, [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 7, .external_lex_state = 3}, - [1559] = {.lex_state = 7, .external_lex_state = 3}, - [1560] = {.lex_state = 14, .external_lex_state = 3}, - [1561] = {.lex_state = 7, .external_lex_state = 3}, - [1562] = {.lex_state = 14, .external_lex_state = 3}, + [1558] = {.lex_state = 15, .external_lex_state = 3}, + [1559] = {.lex_state = 15, .external_lex_state = 3}, + [1560] = {.lex_state = 7, .external_lex_state = 3}, + [1561] = {.lex_state = 15, .external_lex_state = 3}, + [1562] = {.lex_state = 7, .external_lex_state = 3}, [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 4, .external_lex_state = 3}, - [1565] = {.lex_state = 7, .external_lex_state = 3}, + [1564] = {.lex_state = 7, .external_lex_state = 3}, + [1565] = {.lex_state = 15, .external_lex_state = 3}, [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 7, .external_lex_state = 3}, - [1568] = {.lex_state = 14, .external_lex_state = 3}, + [1567] = {.lex_state = 15, .external_lex_state = 3}, + [1568] = {.lex_state = 7, .external_lex_state = 3}, [1569] = {.lex_state = 7, .external_lex_state = 3}, - [1570] = {.lex_state = 4, .external_lex_state = 3}, - [1571] = {.lex_state = 7, .external_lex_state = 3}, - [1572] = {.lex_state = 7, .external_lex_state = 3}, - [1573] = {.lex_state = 7, .external_lex_state = 3}, - [1574] = {.lex_state = 0, .external_lex_state = 3}, + [1570] = {.lex_state = 7, .external_lex_state = 3}, + [1571] = {.lex_state = 4, .external_lex_state = 3}, + [1572] = {.lex_state = 15, .external_lex_state = 3}, + [1573] = {.lex_state = 15, .external_lex_state = 3}, + [1574] = {.lex_state = 7, .external_lex_state = 3}, [1575] = {.lex_state = 7, .external_lex_state = 3}, [1576] = {.lex_state = 7, .external_lex_state = 3}, - [1577] = {.lex_state = 0, .external_lex_state = 3}, - [1578] = {.lex_state = 0, .external_lex_state = 3}, + [1577] = {.lex_state = 15, .external_lex_state = 3}, + [1578] = {.lex_state = 7, .external_lex_state = 3}, [1579] = {.lex_state = 4, .external_lex_state = 3}, [1580] = {.lex_state = 7, .external_lex_state = 3}, - [1581] = {.lex_state = 0, .external_lex_state = 3}, + [1581] = {.lex_state = 7, .external_lex_state = 3}, [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 0, .external_lex_state = 3}, - [1584] = {.lex_state = 0, .external_lex_state = 3}, - [1585] = {.lex_state = 0, .external_lex_state = 3}, + [1583] = {.lex_state = 7, .external_lex_state = 3}, + [1584] = {.lex_state = 15, .external_lex_state = 3}, + [1585] = {.lex_state = 7, .external_lex_state = 3}, [1586] = {.lex_state = 7, .external_lex_state = 3}, [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 0, .external_lex_state = 3}, - [1589] = {.lex_state = 0, .external_lex_state = 3}, - [1590] = {.lex_state = 14, .external_lex_state = 3}, - [1591] = {.lex_state = 14, .external_lex_state = 3}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 3}, + [1588] = {.lex_state = 7, .external_lex_state = 3}, + [1589] = {.lex_state = 7, .external_lex_state = 3}, + [1590] = {.lex_state = 15, .external_lex_state = 3}, + [1591] = {.lex_state = 0, .external_lex_state = 3}, + [1592] = {.lex_state = 0, .external_lex_state = 3}, + [1593] = {.lex_state = 0, .external_lex_state = 3}, [1594] = {.lex_state = 0, .external_lex_state = 3}, - [1595] = {.lex_state = 7, .external_lex_state = 3}, - [1596] = {.lex_state = 14, .external_lex_state = 3}, - [1597] = {.lex_state = 14, .external_lex_state = 3}, + [1595] = {.lex_state = 0, .external_lex_state = 3}, + [1596] = {.lex_state = 0, .external_lex_state = 3}, + [1597] = {.lex_state = 0, .external_lex_state = 3}, [1598] = {.lex_state = 0, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, + [1599] = {.lex_state = 0, .external_lex_state = 3}, [1600] = {.lex_state = 0, .external_lex_state = 3}, - [1601] = {.lex_state = 0, .external_lex_state = 3}, - [1602] = {.lex_state = 0, .external_lex_state = 3}, - [1603] = {.lex_state = 7, .external_lex_state = 3}, + [1601] = {.lex_state = 7, .external_lex_state = 3}, + [1602] = {.lex_state = 7, .external_lex_state = 3}, + [1603] = {.lex_state = 15, .external_lex_state = 3}, [1604] = {.lex_state = 0, .external_lex_state = 3}, [1605] = {.lex_state = 0, .external_lex_state = 3}, [1606] = {.lex_state = 7, .external_lex_state = 3}, [1607] = {.lex_state = 0, .external_lex_state = 3}, [1608] = {.lex_state = 0, .external_lex_state = 3}, - [1609] = {.lex_state = 0, .external_lex_state = 3}, + [1609] = {.lex_state = 7, .external_lex_state = 3}, [1610] = {.lex_state = 0, .external_lex_state = 3}, - [1611] = {.lex_state = 7, .external_lex_state = 3}, - [1612] = {.lex_state = 7, .external_lex_state = 3}, - [1613] = {.lex_state = 0, .external_lex_state = 3}, + [1611] = {.lex_state = 0, .external_lex_state = 3}, + [1612] = {.lex_state = 4, .external_lex_state = 3}, + [1613] = {.lex_state = 7, .external_lex_state = 3}, [1614] = {.lex_state = 0, .external_lex_state = 3}, - [1615] = {.lex_state = 7, .external_lex_state = 3}, + [1615] = {.lex_state = 0, .external_lex_state = 3}, [1616] = {.lex_state = 7, .external_lex_state = 3}, [1617] = {.lex_state = 7, .external_lex_state = 3}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 7, .external_lex_state = 3}, - [1620] = {.lex_state = 17, .external_lex_state = 3}, - [1621] = {.lex_state = 7, .external_lex_state = 3}, - [1622] = {.lex_state = 10, .external_lex_state = 3}, + [1618] = {.lex_state = 0, .external_lex_state = 3}, + [1619] = {.lex_state = 0, .external_lex_state = 3}, + [1620] = {.lex_state = 15, .external_lex_state = 3}, + [1621] = {.lex_state = 0, .external_lex_state = 3}, + [1622] = {.lex_state = 7, .external_lex_state = 3}, [1623] = {.lex_state = 7, .external_lex_state = 3}, [1624] = {.lex_state = 7, .external_lex_state = 3}, [1625] = {.lex_state = 7, .external_lex_state = 3}, @@ -13629,756 +13685,756 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1628] = {.lex_state = 7, .external_lex_state = 3}, [1629] = {.lex_state = 7, .external_lex_state = 3}, [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, + [1631] = {.lex_state = 15, .external_lex_state = 3}, [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 10, .external_lex_state = 3}, - [1634] = {.lex_state = 7, .external_lex_state = 3}, + [1633] = {.lex_state = 7, .external_lex_state = 3}, + [1634] = {.lex_state = 0, .external_lex_state = 3}, [1635] = {.lex_state = 7, .external_lex_state = 3}, - [1636] = {.lex_state = 17, .external_lex_state = 3}, + [1636] = {.lex_state = 0, .external_lex_state = 3}, [1637] = {.lex_state = 7, .external_lex_state = 3}, [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 17, .external_lex_state = 3}, + [1639] = {.lex_state = 4, .external_lex_state = 3}, [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 13, .external_lex_state = 3}, - [1642] = {.lex_state = 7, .external_lex_state = 3}, + [1641] = {.lex_state = 7, .external_lex_state = 3}, + [1642] = {.lex_state = 18, .external_lex_state = 3}, [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 7, .external_lex_state = 3}, + [1644] = {.lex_state = 10, .external_lex_state = 3}, + [1645] = {.lex_state = 18, .external_lex_state = 3}, [1646] = {.lex_state = 7, .external_lex_state = 3}, - [1647] = {.lex_state = 4, .external_lex_state = 3}, - [1648] = {.lex_state = 17, .external_lex_state = 3}, + [1647] = {.lex_state = 7, .external_lex_state = 3}, + [1648] = {.lex_state = 7, .external_lex_state = 3}, [1649] = {.lex_state = 7, .external_lex_state = 3}, [1650] = {.lex_state = 7, .external_lex_state = 3}, [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 14, .external_lex_state = 3}, + [1652] = {.lex_state = 10, .external_lex_state = 3}, + [1653] = {.lex_state = 7, .external_lex_state = 3}, [1654] = {.lex_state = 7, .external_lex_state = 3}, [1655] = {.lex_state = 7, .external_lex_state = 3}, [1656] = {.lex_state = 7, .external_lex_state = 3}, [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 10, .external_lex_state = 3}, + [1658] = {.lex_state = 7, .external_lex_state = 3}, [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 17, .external_lex_state = 3}, + [1660] = {.lex_state = 7, .external_lex_state = 3}, [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 10, .external_lex_state = 3}, - [1663] = {.lex_state = 0, .external_lex_state = 3}, + [1662] = {.lex_state = 7, .external_lex_state = 3}, + [1663] = {.lex_state = 7, .external_lex_state = 3}, [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 3}, - [1666] = {.lex_state = 7, .external_lex_state = 3}, - [1667] = {.lex_state = 4, .external_lex_state = 3}, - [1668] = {.lex_state = 0, .external_lex_state = 3}, - [1669] = {.lex_state = 7, .external_lex_state = 3}, + [1665] = {.lex_state = 18, .external_lex_state = 3}, + [1666] = {.lex_state = 0, .external_lex_state = 3}, + [1667] = {.lex_state = 7, .external_lex_state = 3}, + [1668] = {.lex_state = 18, .external_lex_state = 3}, + [1669] = {.lex_state = 10, .external_lex_state = 3}, [1670] = {.lex_state = 7, .external_lex_state = 3}, - [1671] = {.lex_state = 17, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 10, .external_lex_state = 3}, + [1671] = {.lex_state = 7, .external_lex_state = 3}, + [1672] = {.lex_state = 15, .external_lex_state = 3}, + [1673] = {.lex_state = 7, .external_lex_state = 3}, [1674] = {.lex_state = 7, .external_lex_state = 3}, [1675] = {.lex_state = 7, .external_lex_state = 3}, [1676] = {.lex_state = 7, .external_lex_state = 3}, [1677] = {.lex_state = 7, .external_lex_state = 3}, [1678] = {.lex_state = 7, .external_lex_state = 3}, [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 10, .external_lex_state = 3}, + [1680] = {.lex_state = 7, .external_lex_state = 3}, [1681] = {.lex_state = 7, .external_lex_state = 3}, - [1682] = {.lex_state = 7, .external_lex_state = 3}, + [1682] = {.lex_state = 18, .external_lex_state = 3}, [1683] = {.lex_state = 7, .external_lex_state = 3}, - [1684] = {.lex_state = 7, .external_lex_state = 3}, + [1684] = {.lex_state = 4, .external_lex_state = 3}, [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 7, .external_lex_state = 3}, - [1687] = {.lex_state = 57, .external_lex_state = 3}, - [1688] = {.lex_state = 57, .external_lex_state = 3}, - [1689] = {.lex_state = 7, .external_lex_state = 3}, - [1690] = {.lex_state = 7, .external_lex_state = 3}, + [1686] = {.lex_state = 0, .external_lex_state = 3}, + [1687] = {.lex_state = 7, .external_lex_state = 3}, + [1688] = {.lex_state = 18, .external_lex_state = 3}, + [1689] = {.lex_state = 58, .external_lex_state = 3}, + [1690] = {.lex_state = 58, .external_lex_state = 3}, [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 7, .external_lex_state = 3}, + [1692] = {.lex_state = 10, .external_lex_state = 3}, [1693] = {.lex_state = 7, .external_lex_state = 3}, [1694] = {.lex_state = 7, .external_lex_state = 3}, [1695] = {.lex_state = 7, .external_lex_state = 3}, - [1696] = {.lex_state = 13, .external_lex_state = 3}, - [1697] = {.lex_state = 17, .external_lex_state = 3}, + [1696] = {.lex_state = 7, .external_lex_state = 3}, + [1697] = {.lex_state = 7, .external_lex_state = 3}, [1698] = {.lex_state = 7, .external_lex_state = 3}, [1699] = {.lex_state = 7, .external_lex_state = 3}, [1700] = {.lex_state = 7, .external_lex_state = 3}, [1701] = {.lex_state = 7, .external_lex_state = 3}, - [1702] = {.lex_state = 17, .external_lex_state = 3}, + [1702] = {.lex_state = 14, .external_lex_state = 3}, [1703] = {.lex_state = 7, .external_lex_state = 3}, [1704] = {.lex_state = 7, .external_lex_state = 3}, - [1705] = {.lex_state = 4, .external_lex_state = 3}, - [1706] = {.lex_state = 17, .external_lex_state = 3}, - [1707] = {.lex_state = 0, .external_lex_state = 3}, - [1708] = {.lex_state = 17, .external_lex_state = 3}, + [1705] = {.lex_state = 7, .external_lex_state = 3}, + [1706] = {.lex_state = 18, .external_lex_state = 3}, + [1707] = {.lex_state = 7, .external_lex_state = 3}, + [1708] = {.lex_state = 7, .external_lex_state = 3}, [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 17, .external_lex_state = 3}, + [1710] = {.lex_state = 18, .external_lex_state = 3}, [1711] = {.lex_state = 7, .external_lex_state = 3}, [1712] = {.lex_state = 7, .external_lex_state = 3}, - [1713] = {.lex_state = 4, .external_lex_state = 3}, - [1714] = {.lex_state = 17, .external_lex_state = 3}, - [1715] = {.lex_state = 7, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 3}, + [1713] = {.lex_state = 7, .external_lex_state = 3}, + [1714] = {.lex_state = 4, .external_lex_state = 3}, + [1715] = {.lex_state = 10, .external_lex_state = 3}, + [1716] = {.lex_state = 10, .external_lex_state = 3}, [1717] = {.lex_state = 7, .external_lex_state = 3}, - [1718] = {.lex_state = 7, .external_lex_state = 3}, - [1719] = {.lex_state = 10, .external_lex_state = 3}, - [1720] = {.lex_state = 10, .external_lex_state = 3}, - [1721] = {.lex_state = 7, .external_lex_state = 3}, - [1722] = {.lex_state = 0, .external_lex_state = 3}, + [1718] = {.lex_state = 18, .external_lex_state = 3}, + [1719] = {.lex_state = 18, .external_lex_state = 3}, + [1720] = {.lex_state = 7, .external_lex_state = 3}, + [1721] = {.lex_state = 14, .external_lex_state = 3}, + [1722] = {.lex_state = 7, .external_lex_state = 3}, [1723] = {.lex_state = 7, .external_lex_state = 3}, - [1724] = {.lex_state = 17, .external_lex_state = 3}, + [1724] = {.lex_state = 7, .external_lex_state = 3}, [1725] = {.lex_state = 7, .external_lex_state = 3}, - [1726] = {.lex_state = 57, .external_lex_state = 3}, - [1727] = {.lex_state = 0, .external_lex_state = 3}, - [1728] = {.lex_state = 4, .external_lex_state = 3}, - [1729] = {.lex_state = 17, .external_lex_state = 3}, - [1730] = {.lex_state = 17, .external_lex_state = 3}, - [1731] = {.lex_state = 17, .external_lex_state = 3}, - [1732] = {.lex_state = 0, .external_lex_state = 3}, - [1733] = {.lex_state = 0, .external_lex_state = 3}, - [1734] = {.lex_state = 17, .external_lex_state = 3}, - [1735] = {.lex_state = 0, .external_lex_state = 3}, - [1736] = {.lex_state = 10, .external_lex_state = 3}, - [1737] = {.lex_state = 10, .external_lex_state = 3}, - [1738] = {.lex_state = 0, .external_lex_state = 3}, + [1726] = {.lex_state = 7, .external_lex_state = 3}, + [1727] = {.lex_state = 7, .external_lex_state = 3}, + [1728] = {.lex_state = 7, .external_lex_state = 3}, + [1729] = {.lex_state = 4, .external_lex_state = 3}, + [1730] = {.lex_state = 18, .external_lex_state = 3}, + [1731] = {.lex_state = 7, .external_lex_state = 3}, + [1732] = {.lex_state = 7, .external_lex_state = 3}, + [1733] = {.lex_state = 7, .external_lex_state = 3}, + [1734] = {.lex_state = 7, .external_lex_state = 3}, + [1735] = {.lex_state = 7, .external_lex_state = 3}, + [1736] = {.lex_state = 58, .external_lex_state = 3}, + [1737] = {.lex_state = 7, .external_lex_state = 3}, + [1738] = {.lex_state = 10, .external_lex_state = 3}, [1739] = {.lex_state = 10, .external_lex_state = 3}, - [1740] = {.lex_state = 10, .external_lex_state = 3}, - [1741] = {.lex_state = 7, .external_lex_state = 3}, - [1742] = {.lex_state = 7, .external_lex_state = 3}, - [1743] = {.lex_state = 7, .external_lex_state = 3}, + [1740] = {.lex_state = 0, .external_lex_state = 3}, + [1741] = {.lex_state = 18, .external_lex_state = 3}, + [1742] = {.lex_state = 0, .external_lex_state = 3}, + [1743] = {.lex_state = 18, .external_lex_state = 3}, [1744] = {.lex_state = 7, .external_lex_state = 3}, - [1745] = {.lex_state = 7, .external_lex_state = 3}, - [1746] = {.lex_state = 7, .external_lex_state = 3}, - [1747] = {.lex_state = 17, .external_lex_state = 3}, - [1748] = {.lex_state = 17, .external_lex_state = 3}, - [1749] = {.lex_state = 57, .external_lex_state = 3}, - [1750] = {.lex_state = 17, .external_lex_state = 3}, + [1745] = {.lex_state = 10, .external_lex_state = 3}, + [1746] = {.lex_state = 10, .external_lex_state = 3}, + [1747] = {.lex_state = 18, .external_lex_state = 3}, + [1748] = {.lex_state = 7, .external_lex_state = 3}, + [1749] = {.lex_state = 7, .external_lex_state = 3}, + [1750] = {.lex_state = 4, .external_lex_state = 3}, [1751] = {.lex_state = 7, .external_lex_state = 3}, - [1752] = {.lex_state = 7, .external_lex_state = 3}, - [1753] = {.lex_state = 17, .external_lex_state = 3}, - [1754] = {.lex_state = 0, .external_lex_state = 3}, - [1755] = {.lex_state = 0, .external_lex_state = 3}, + [1752] = {.lex_state = 18, .external_lex_state = 3}, + [1753] = {.lex_state = 0, .external_lex_state = 3}, + [1754] = {.lex_state = 58, .external_lex_state = 3}, + [1755] = {.lex_state = 18, .external_lex_state = 3}, [1756] = {.lex_state = 7, .external_lex_state = 3}, - [1757] = {.lex_state = 7, .external_lex_state = 3}, - [1758] = {.lex_state = 7, .external_lex_state = 3}, - [1759] = {.lex_state = 7, .external_lex_state = 3}, - [1760] = {.lex_state = 57, .external_lex_state = 3}, - [1761] = {.lex_state = 17, .external_lex_state = 3}, + [1757] = {.lex_state = 0, .external_lex_state = 3}, + [1758] = {.lex_state = 0, .external_lex_state = 3}, + [1759] = {.lex_state = 18, .external_lex_state = 3}, + [1760] = {.lex_state = 10, .external_lex_state = 3}, + [1761] = {.lex_state = 10, .external_lex_state = 3}, [1762] = {.lex_state = 18, .external_lex_state = 3}, - [1763] = {.lex_state = 4, .external_lex_state = 3}, - [1764] = {.lex_state = 4, .external_lex_state = 4}, - [1765] = {.lex_state = 4, .external_lex_state = 3}, - [1766] = {.lex_state = 0, .external_lex_state = 3}, - [1767] = {.lex_state = 57, .external_lex_state = 3}, - [1768] = {.lex_state = 57, .external_lex_state = 3}, - [1769] = {.lex_state = 57, .external_lex_state = 3}, - [1770] = {.lex_state = 17, .external_lex_state = 3}, - [1771] = {.lex_state = 18, .external_lex_state = 3}, + [1763] = {.lex_state = 0, .external_lex_state = 3}, + [1764] = {.lex_state = 18, .external_lex_state = 3}, + [1765] = {.lex_state = 7, .external_lex_state = 3}, + [1766] = {.lex_state = 7, .external_lex_state = 3}, + [1767] = {.lex_state = 7, .external_lex_state = 3}, + [1768] = {.lex_state = 18, .external_lex_state = 3}, + [1769] = {.lex_state = 0, .external_lex_state = 3}, + [1770] = {.lex_state = 7, .external_lex_state = 3}, + [1771] = {.lex_state = 0, .external_lex_state = 3}, [1772] = {.lex_state = 18, .external_lex_state = 3}, [1773] = {.lex_state = 7, .external_lex_state = 3}, - [1774] = {.lex_state = 57, .external_lex_state = 3}, - [1775] = {.lex_state = 17, .external_lex_state = 3}, + [1774] = {.lex_state = 7, .external_lex_state = 3}, + [1775] = {.lex_state = 7, .external_lex_state = 3}, [1776] = {.lex_state = 7, .external_lex_state = 3}, [1777] = {.lex_state = 7, .external_lex_state = 3}, - [1778] = {.lex_state = 57, .external_lex_state = 3}, - [1779] = {.lex_state = 57, .external_lex_state = 3}, - [1780] = {.lex_state = 0, .external_lex_state = 3}, - [1781] = {.lex_state = 4, .external_lex_state = 3}, - [1782] = {.lex_state = 0, .external_lex_state = 3}, - [1783] = {.lex_state = 17, .external_lex_state = 3}, - [1784] = {.lex_state = 4, .external_lex_state = 4}, - [1785] = {.lex_state = 0, .external_lex_state = 3}, - [1786] = {.lex_state = 0, .external_lex_state = 3}, - [1787] = {.lex_state = 0, .external_lex_state = 3}, - [1788] = {.lex_state = 7, .external_lex_state = 3}, - [1789] = {.lex_state = 57, .external_lex_state = 3}, - [1790] = {.lex_state = 0, .external_lex_state = 3}, - [1791] = {.lex_state = 4, .external_lex_state = 4}, - [1792] = {.lex_state = 57, .external_lex_state = 3}, - [1793] = {.lex_state = 0, .external_lex_state = 3}, - [1794] = {.lex_state = 4, .external_lex_state = 4}, - [1795] = {.lex_state = 17, .external_lex_state = 3}, - [1796] = {.lex_state = 0, .external_lex_state = 3}, - [1797] = {.lex_state = 7, .external_lex_state = 3}, - [1798] = {.lex_state = 57, .external_lex_state = 3}, - [1799] = {.lex_state = 57, .external_lex_state = 3}, - [1800] = {.lex_state = 7, .external_lex_state = 3}, - [1801] = {.lex_state = 18, .external_lex_state = 3}, - [1802] = {.lex_state = 57, .external_lex_state = 3}, - [1803] = {.lex_state = 7, .external_lex_state = 3}, - [1804] = {.lex_state = 7, .external_lex_state = 3}, - [1805] = {.lex_state = 7, .external_lex_state = 3}, - [1806] = {.lex_state = 57, .external_lex_state = 3}, - [1807] = {.lex_state = 57, .external_lex_state = 3}, - [1808] = {.lex_state = 0, .external_lex_state = 3}, - [1809] = {.lex_state = 57, .external_lex_state = 3}, - [1810] = {.lex_state = 7, .external_lex_state = 3}, - [1811] = {.lex_state = 57, .external_lex_state = 3}, - [1812] = {.lex_state = 7, .external_lex_state = 3}, - [1813] = {.lex_state = 57, .external_lex_state = 3}, + [1778] = {.lex_state = 7, .external_lex_state = 3}, + [1779] = {.lex_state = 18, .external_lex_state = 3}, + [1780] = {.lex_state = 58, .external_lex_state = 3}, + [1781] = {.lex_state = 0, .external_lex_state = 3}, + [1782] = {.lex_state = 18, .external_lex_state = 3}, + [1783] = {.lex_state = 4, .external_lex_state = 3}, + [1784] = {.lex_state = 58, .external_lex_state = 3}, + [1785] = {.lex_state = 58, .external_lex_state = 3}, + [1786] = {.lex_state = 19, .external_lex_state = 3}, + [1787] = {.lex_state = 7, .external_lex_state = 3}, + [1788] = {.lex_state = 58, .external_lex_state = 3}, + [1789] = {.lex_state = 19, .external_lex_state = 3}, + [1790] = {.lex_state = 7, .external_lex_state = 3}, + [1791] = {.lex_state = 7, .external_lex_state = 3}, + [1792] = {.lex_state = 0, .external_lex_state = 3}, + [1793] = {.lex_state = 7, .external_lex_state = 3}, + [1794] = {.lex_state = 10, .external_lex_state = 3}, + [1795] = {.lex_state = 7, .external_lex_state = 3}, + [1796] = {.lex_state = 18, .external_lex_state = 3}, + [1797] = {.lex_state = 0, .external_lex_state = 3}, + [1798] = {.lex_state = 10, .external_lex_state = 3}, + [1799] = {.lex_state = 58, .external_lex_state = 3}, + [1800] = {.lex_state = 58, .external_lex_state = 3}, + [1801] = {.lex_state = 7, .external_lex_state = 3}, + [1802] = {.lex_state = 0, .external_lex_state = 3}, + [1803] = {.lex_state = 0, .external_lex_state = 3}, + [1804] = {.lex_state = 58, .external_lex_state = 3}, + [1805] = {.lex_state = 19, .external_lex_state = 3}, + [1806] = {.lex_state = 58, .external_lex_state = 3}, + [1807] = {.lex_state = 58, .external_lex_state = 3}, + [1808] = {.lex_state = 58, .external_lex_state = 3}, + [1809] = {.lex_state = 0, .external_lex_state = 3}, + [1810] = {.lex_state = 58, .external_lex_state = 3}, + [1811] = {.lex_state = 58, .external_lex_state = 3}, + [1812] = {.lex_state = 4, .external_lex_state = 4}, + [1813] = {.lex_state = 58, .external_lex_state = 3}, [1814] = {.lex_state = 7, .external_lex_state = 3}, - [1815] = {.lex_state = 7, .external_lex_state = 3}, - [1816] = {.lex_state = 7, .external_lex_state = 3}, - [1817] = {.lex_state = 4, .external_lex_state = 3}, - [1818] = {.lex_state = 17, .external_lex_state = 3}, - [1819] = {.lex_state = 57, .external_lex_state = 3}, - [1820] = {.lex_state = 57, .external_lex_state = 3}, - [1821] = {.lex_state = 7, .external_lex_state = 3}, - [1822] = {.lex_state = 57, .external_lex_state = 3}, - [1823] = {.lex_state = 7, .external_lex_state = 3}, - [1824] = {.lex_state = 10, .external_lex_state = 3}, - [1825] = {.lex_state = 7, .external_lex_state = 3}, - [1826] = {.lex_state = 10, .external_lex_state = 3}, + [1815] = {.lex_state = 58, .external_lex_state = 3}, + [1816] = {.lex_state = 18, .external_lex_state = 3}, + [1817] = {.lex_state = 18, .external_lex_state = 3}, + [1818] = {.lex_state = 4, .external_lex_state = 4}, + [1819] = {.lex_state = 19, .external_lex_state = 3}, + [1820] = {.lex_state = 58, .external_lex_state = 3}, + [1821] = {.lex_state = 58, .external_lex_state = 3}, + [1822] = {.lex_state = 0, .external_lex_state = 3}, + [1823] = {.lex_state = 58, .external_lex_state = 3}, + [1824] = {.lex_state = 7, .external_lex_state = 3}, + [1825] = {.lex_state = 58, .external_lex_state = 3}, + [1826] = {.lex_state = 18, .external_lex_state = 3}, [1827] = {.lex_state = 7, .external_lex_state = 3}, - [1828] = {.lex_state = 17, .external_lex_state = 3}, - [1829] = {.lex_state = 0, .external_lex_state = 3}, - [1830] = {.lex_state = 57, .external_lex_state = 3}, - [1831] = {.lex_state = 57, .external_lex_state = 3}, - [1832] = {.lex_state = 57, .external_lex_state = 3}, - [1833] = {.lex_state = 17, .external_lex_state = 3}, - [1834] = {.lex_state = 7, .external_lex_state = 3}, + [1828] = {.lex_state = 0, .external_lex_state = 3}, + [1829] = {.lex_state = 7, .external_lex_state = 3}, + [1830] = {.lex_state = 0, .external_lex_state = 3}, + [1831] = {.lex_state = 7, .external_lex_state = 3}, + [1832] = {.lex_state = 4, .external_lex_state = 4}, + [1833] = {.lex_state = 7, .external_lex_state = 3}, + [1834] = {.lex_state = 58, .external_lex_state = 3}, [1835] = {.lex_state = 0, .external_lex_state = 3}, [1836] = {.lex_state = 4, .external_lex_state = 4}, - [1837] = {.lex_state = 7, .external_lex_state = 3}, - [1838] = {.lex_state = 17, .external_lex_state = 3}, + [1837] = {.lex_state = 4, .external_lex_state = 3}, + [1838] = {.lex_state = 4, .external_lex_state = 4}, [1839] = {.lex_state = 0, .external_lex_state = 3}, - [1840] = {.lex_state = 57, .external_lex_state = 3}, - [1841] = {.lex_state = 57, .external_lex_state = 3}, - [1842] = {.lex_state = 57, .external_lex_state = 3}, - [1843] = {.lex_state = 0, .external_lex_state = 3}, - [1844] = {.lex_state = 57, .external_lex_state = 3}, - [1845] = {.lex_state = 4, .external_lex_state = 4}, + [1840] = {.lex_state = 58, .external_lex_state = 3}, + [1841] = {.lex_state = 7, .external_lex_state = 3}, + [1842] = {.lex_state = 0, .external_lex_state = 3}, + [1843] = {.lex_state = 58, .external_lex_state = 3}, + [1844] = {.lex_state = 0, .external_lex_state = 3}, + [1845] = {.lex_state = 7, .external_lex_state = 3}, [1846] = {.lex_state = 0, .external_lex_state = 3}, - [1847] = {.lex_state = 57, .external_lex_state = 3}, - [1848] = {.lex_state = 17, .external_lex_state = 3}, - [1849] = {.lex_state = 0, .external_lex_state = 3}, - [1850] = {.lex_state = 0, .external_lex_state = 3}, - [1851] = {.lex_state = 17, .external_lex_state = 3}, - [1852] = {.lex_state = 4, .external_lex_state = 4}, - [1853] = {.lex_state = 0, .external_lex_state = 3}, - [1854] = {.lex_state = 7, .external_lex_state = 3}, - [1855] = {.lex_state = 57, .external_lex_state = 3}, - [1856] = {.lex_state = 0, .external_lex_state = 3}, + [1847] = {.lex_state = 4, .external_lex_state = 3}, + [1848] = {.lex_state = 18, .external_lex_state = 3}, + [1849] = {.lex_state = 4, .external_lex_state = 4}, + [1850] = {.lex_state = 4, .external_lex_state = 3}, + [1851] = {.lex_state = 7, .external_lex_state = 3}, + [1852] = {.lex_state = 7, .external_lex_state = 3}, + [1853] = {.lex_state = 7, .external_lex_state = 3}, + [1854] = {.lex_state = 58, .external_lex_state = 3}, + [1855] = {.lex_state = 18, .external_lex_state = 3}, + [1856] = {.lex_state = 58, .external_lex_state = 3}, [1857] = {.lex_state = 7, .external_lex_state = 3}, - [1858] = {.lex_state = 7, .external_lex_state = 3}, - [1859] = {.lex_state = 7, .external_lex_state = 3}, - [1860] = {.lex_state = 0, .external_lex_state = 3}, - [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 57, .external_lex_state = 3}, + [1858] = {.lex_state = 58, .external_lex_state = 3}, + [1859] = {.lex_state = 0, .external_lex_state = 3}, + [1860] = {.lex_state = 4, .external_lex_state = 4}, + [1861] = {.lex_state = 7, .external_lex_state = 3}, + [1862] = {.lex_state = 58, .external_lex_state = 3}, [1863] = {.lex_state = 0, .external_lex_state = 3}, [1864] = {.lex_state = 7, .external_lex_state = 3}, - [1865] = {.lex_state = 57, .external_lex_state = 3}, + [1865] = {.lex_state = 18, .external_lex_state = 3}, [1866] = {.lex_state = 7, .external_lex_state = 3}, - [1867] = {.lex_state = 7, .external_lex_state = 3}, - [1868] = {.lex_state = 57, .external_lex_state = 3}, - [1869] = {.lex_state = 0, .external_lex_state = 3}, + [1867] = {.lex_state = 0, .external_lex_state = 3}, + [1868] = {.lex_state = 7, .external_lex_state = 3}, + [1869] = {.lex_state = 58, .external_lex_state = 3}, [1870] = {.lex_state = 7, .external_lex_state = 3}, - [1871] = {.lex_state = 57, .external_lex_state = 3}, + [1871] = {.lex_state = 18, .external_lex_state = 3}, [1872] = {.lex_state = 7, .external_lex_state = 3}, - [1873] = {.lex_state = 57, .external_lex_state = 3}, + [1873] = {.lex_state = 18, .external_lex_state = 3}, [1874] = {.lex_state = 0, .external_lex_state = 3}, - [1875] = {.lex_state = 0, .external_lex_state = 3}, + [1875] = {.lex_state = 58, .external_lex_state = 3}, [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 57, .external_lex_state = 3}, - [1878] = {.lex_state = 0, .external_lex_state = 3}, - [1879] = {.lex_state = 0, .external_lex_state = 3}, - [1880] = {.lex_state = 0, .external_lex_state = 3}, + [1877] = {.lex_state = 58, .external_lex_state = 3}, + [1878] = {.lex_state = 4, .external_lex_state = 4}, + [1879] = {.lex_state = 58, .external_lex_state = 3}, + [1880] = {.lex_state = 4, .external_lex_state = 4}, [1881] = {.lex_state = 0, .external_lex_state = 3}, - [1882] = {.lex_state = 0, .external_lex_state = 3}, - [1883] = {.lex_state = 0, .external_lex_state = 3}, - [1884] = {.lex_state = 7, .external_lex_state = 3}, - [1885] = {.lex_state = 57, .external_lex_state = 3}, - [1886] = {.lex_state = 0, .external_lex_state = 3}, - [1887] = {.lex_state = 57, .external_lex_state = 3}, - [1888] = {.lex_state = 57, .external_lex_state = 3}, + [1882] = {.lex_state = 58, .external_lex_state = 3}, + [1883] = {.lex_state = 10, .external_lex_state = 3}, + [1884] = {.lex_state = 58, .external_lex_state = 3}, + [1885] = {.lex_state = 0, .external_lex_state = 3}, + [1886] = {.lex_state = 7, .external_lex_state = 3}, + [1887] = {.lex_state = 3, .external_lex_state = 3}, + [1888] = {.lex_state = 7, .external_lex_state = 3}, [1889] = {.lex_state = 0, .external_lex_state = 3}, - [1890] = {.lex_state = 57, .external_lex_state = 3}, - [1891] = {.lex_state = 7, .external_lex_state = 3}, + [1890] = {.lex_state = 0, .external_lex_state = 3}, + [1891] = {.lex_state = 0, .external_lex_state = 3}, [1892] = {.lex_state = 0, .external_lex_state = 3}, - [1893] = {.lex_state = 0, .external_lex_state = 3}, - [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 0, .external_lex_state = 3}, - [1896] = {.lex_state = 57, .external_lex_state = 3}, + [1893] = {.lex_state = 3, .external_lex_state = 3}, + [1894] = {.lex_state = 58, .external_lex_state = 3}, + [1895] = {.lex_state = 58, .external_lex_state = 3}, + [1896] = {.lex_state = 58, .external_lex_state = 3}, [1897] = {.lex_state = 0, .external_lex_state = 3}, - [1898] = {.lex_state = 7, .external_lex_state = 3}, + [1898] = {.lex_state = 0, .external_lex_state = 3}, [1899] = {.lex_state = 0, .external_lex_state = 3}, - [1900] = {.lex_state = 57, .external_lex_state = 3}, - [1901] = {.lex_state = 57, .external_lex_state = 3}, - [1902] = {.lex_state = 0, .external_lex_state = 3}, + [1900] = {.lex_state = 58, .external_lex_state = 3}, + [1901] = {.lex_state = 3, .external_lex_state = 3}, + [1902] = {.lex_state = 3, .external_lex_state = 3}, [1903] = {.lex_state = 0, .external_lex_state = 3}, - [1904] = {.lex_state = 0, .external_lex_state = 3}, - [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 7, .external_lex_state = 3}, + [1904] = {.lex_state = 58, .external_lex_state = 3}, + [1905] = {.lex_state = 58, .external_lex_state = 3}, + [1906] = {.lex_state = 0, .external_lex_state = 3}, [1907] = {.lex_state = 0, .external_lex_state = 3}, - [1908] = {.lex_state = 57, .external_lex_state = 3}, - [1909] = {.lex_state = 57, .external_lex_state = 3}, + [1908] = {.lex_state = 0, .external_lex_state = 3}, + [1909] = {.lex_state = 0, .external_lex_state = 3}, [1910] = {.lex_state = 0, .external_lex_state = 3}, - [1911] = {.lex_state = 7, .external_lex_state = 3}, + [1911] = {.lex_state = 3, .external_lex_state = 3}, [1912] = {.lex_state = 0, .external_lex_state = 3}, [1913] = {.lex_state = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 57, .external_lex_state = 3}, + [1914] = {.lex_state = 7, .external_lex_state = 3}, [1915] = {.lex_state = 0, .external_lex_state = 3}, - [1916] = {.lex_state = 10, .external_lex_state = 3}, - [1917] = {.lex_state = 0, .external_lex_state = 3}, - [1918] = {.lex_state = 0, .external_lex_state = 3}, - [1919] = {.lex_state = 0, .external_lex_state = 3}, + [1916] = {.lex_state = 0, .external_lex_state = 3}, + [1917] = {.lex_state = 3, .external_lex_state = 3}, + [1918] = {.lex_state = 3, .external_lex_state = 3}, + [1919] = {.lex_state = 58, .external_lex_state = 3}, [1920] = {.lex_state = 0, .external_lex_state = 3}, - [1921] = {.lex_state = 10, .external_lex_state = 3}, - [1922] = {.lex_state = 57, .external_lex_state = 3}, - [1923] = {.lex_state = 57, .external_lex_state = 3}, + [1921] = {.lex_state = 7, .external_lex_state = 3}, + [1922] = {.lex_state = 0, .external_lex_state = 3}, + [1923] = {.lex_state = 0, .external_lex_state = 3}, [1924] = {.lex_state = 0, .external_lex_state = 3}, - [1925] = {.lex_state = 57, .external_lex_state = 3}, + [1925] = {.lex_state = 0, .external_lex_state = 3}, [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 0, .external_lex_state = 3}, - [1928] = {.lex_state = 57, .external_lex_state = 3}, + [1927] = {.lex_state = 7, .external_lex_state = 3}, + [1928] = {.lex_state = 58, .external_lex_state = 3}, [1929] = {.lex_state = 0, .external_lex_state = 3}, - [1930] = {.lex_state = 0, .external_lex_state = 3}, - [1931] = {.lex_state = 0, .external_lex_state = 3}, - [1932] = {.lex_state = 0, .external_lex_state = 3}, - [1933] = {.lex_state = 7, .external_lex_state = 3}, - [1934] = {.lex_state = 0, .external_lex_state = 3}, - [1935] = {.lex_state = 0, .external_lex_state = 3}, + [1930] = {.lex_state = 58, .external_lex_state = 3}, + [1931] = {.lex_state = 58, .external_lex_state = 3}, + [1932] = {.lex_state = 7, .external_lex_state = 3}, + [1933] = {.lex_state = 0, .external_lex_state = 3}, + [1934] = {.lex_state = 7, .external_lex_state = 3}, + [1935] = {.lex_state = 4, .external_lex_state = 3}, [1936] = {.lex_state = 0, .external_lex_state = 3}, - [1937] = {.lex_state = 7, .external_lex_state = 3}, - [1938] = {.lex_state = 0, .external_lex_state = 3}, - [1939] = {.lex_state = 0, .external_lex_state = 3}, + [1937] = {.lex_state = 3, .external_lex_state = 3}, + [1938] = {.lex_state = 3, .external_lex_state = 3}, + [1939] = {.lex_state = 58, .external_lex_state = 3}, [1940] = {.lex_state = 0, .external_lex_state = 3}, - [1941] = {.lex_state = 57, .external_lex_state = 3}, + [1941] = {.lex_state = 7, .external_lex_state = 3}, [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 7, .external_lex_state = 3}, + [1943] = {.lex_state = 0, .external_lex_state = 3}, [1944] = {.lex_state = 0, .external_lex_state = 3}, - [1945] = {.lex_state = 57, .external_lex_state = 3}, - [1946] = {.lex_state = 17, .external_lex_state = 3}, - [1947] = {.lex_state = 7, .external_lex_state = 3}, + [1945] = {.lex_state = 0, .external_lex_state = 3}, + [1946] = {.lex_state = 58, .external_lex_state = 3}, + [1947] = {.lex_state = 3, .external_lex_state = 3}, [1948] = {.lex_state = 0, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, - [1950] = {.lex_state = 57, .external_lex_state = 3}, + [1950] = {.lex_state = 0, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 0, .external_lex_state = 3}, - [1953] = {.lex_state = 0, .external_lex_state = 3}, - [1954] = {.lex_state = 57, .external_lex_state = 3}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, - [1956] = {.lex_state = 0, .external_lex_state = 3}, + [1952] = {.lex_state = 7, .external_lex_state = 3}, + [1953] = {.lex_state = 7, .external_lex_state = 3}, + [1954] = {.lex_state = 0, .external_lex_state = 3}, + [1955] = {.lex_state = 0, .external_lex_state = 3}, + [1956] = {.lex_state = 58, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 57, .external_lex_state = 3}, + [1958] = {.lex_state = 0, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, - [1960] = {.lex_state = 3, .external_lex_state = 3}, - [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 3, .external_lex_state = 3}, - [1963] = {.lex_state = 57, .external_lex_state = 3}, - [1964] = {.lex_state = 10, .external_lex_state = 3}, + [1960] = {.lex_state = 0, .external_lex_state = 3}, + [1961] = {.lex_state = 10, .external_lex_state = 3}, + [1962] = {.lex_state = 58, .external_lex_state = 3}, + [1963] = {.lex_state = 0, .external_lex_state = 3}, + [1964] = {.lex_state = 58, .external_lex_state = 3}, [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 57, .external_lex_state = 3}, + [1966] = {.lex_state = 7, .external_lex_state = 3}, [1967] = {.lex_state = 0, .external_lex_state = 3}, [1968] = {.lex_state = 0, .external_lex_state = 3}, - [1969] = {.lex_state = 3, .external_lex_state = 3}, + [1969] = {.lex_state = 0, .external_lex_state = 3}, [1970] = {.lex_state = 0, .external_lex_state = 3}, - [1971] = {.lex_state = 57, .external_lex_state = 3}, - [1972] = {.lex_state = 3, .external_lex_state = 3}, - [1973] = {.lex_state = 3, .external_lex_state = 3}, - [1974] = {.lex_state = 3, .external_lex_state = 3}, - [1975] = {.lex_state = 0, .external_lex_state = 3}, + [1971] = {.lex_state = 0, .external_lex_state = 3}, + [1972] = {.lex_state = 0, .external_lex_state = 3}, + [1973] = {.lex_state = 0, .external_lex_state = 3}, + [1974] = {.lex_state = 0, .external_lex_state = 3}, + [1975] = {.lex_state = 10, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, - [1977] = {.lex_state = 7, .external_lex_state = 3}, - [1978] = {.lex_state = 57, .external_lex_state = 3}, - [1979] = {.lex_state = 3, .external_lex_state = 3}, - [1980] = {.lex_state = 4, .external_lex_state = 3}, - [1981] = {.lex_state = 4, .external_lex_state = 3}, - [1982] = {.lex_state = 57, .external_lex_state = 3}, + [1977] = {.lex_state = 0, .external_lex_state = 3}, + [1978] = {.lex_state = 10, .external_lex_state = 3}, + [1979] = {.lex_state = 58, .external_lex_state = 3}, + [1980] = {.lex_state = 0, .external_lex_state = 3}, + [1981] = {.lex_state = 58, .external_lex_state = 3}, + [1982] = {.lex_state = 58, .external_lex_state = 3}, [1983] = {.lex_state = 0, .external_lex_state = 3}, - [1984] = {.lex_state = 3, .external_lex_state = 3}, + [1984] = {.lex_state = 58, .external_lex_state = 3}, [1985] = {.lex_state = 0, .external_lex_state = 3}, - [1986] = {.lex_state = 57, .external_lex_state = 3}, - [1987] = {.lex_state = 3, .external_lex_state = 3}, - [1988] = {.lex_state = 7, .external_lex_state = 3}, - [1989] = {.lex_state = 3, .external_lex_state = 3}, - [1990] = {.lex_state = 57, .external_lex_state = 3}, - [1991] = {.lex_state = 3, .external_lex_state = 3}, - [1992] = {.lex_state = 57, .external_lex_state = 3}, + [1986] = {.lex_state = 58, .external_lex_state = 3}, + [1987] = {.lex_state = 0, .external_lex_state = 3}, + [1988] = {.lex_state = 3, .external_lex_state = 3}, + [1989] = {.lex_state = 0, .external_lex_state = 3}, + [1990] = {.lex_state = 3, .external_lex_state = 3}, + [1991] = {.lex_state = 58, .external_lex_state = 3}, + [1992] = {.lex_state = 4, .external_lex_state = 3}, [1993] = {.lex_state = 3, .external_lex_state = 3}, - [1994] = {.lex_state = 57, .external_lex_state = 3}, - [1995] = {.lex_state = 7, .external_lex_state = 3}, - [1996] = {.lex_state = 57, .external_lex_state = 3}, - [1997] = {.lex_state = 3, .external_lex_state = 3}, + [1994] = {.lex_state = 3, .external_lex_state = 3}, + [1995] = {.lex_state = 0, .external_lex_state = 3}, + [1996] = {.lex_state = 58, .external_lex_state = 3}, + [1997] = {.lex_state = 58, .external_lex_state = 3}, [1998] = {.lex_state = 0, .external_lex_state = 3}, - [1999] = {.lex_state = 57, .external_lex_state = 3}, - [2000] = {.lex_state = 57, .external_lex_state = 3}, - [2001] = {.lex_state = 57, .external_lex_state = 3}, - [2002] = {.lex_state = 7, .external_lex_state = 3}, - [2003] = {.lex_state = 57, .external_lex_state = 3}, - [2004] = {.lex_state = 0, .external_lex_state = 3}, - [2005] = {.lex_state = 57, .external_lex_state = 3}, - [2006] = {.lex_state = 3, .external_lex_state = 3}, + [1999] = {.lex_state = 0, .external_lex_state = 3}, + [2000] = {.lex_state = 58, .external_lex_state = 3}, + [2001] = {.lex_state = 0, .external_lex_state = 3}, + [2002] = {.lex_state = 0, .external_lex_state = 3}, + [2003] = {.lex_state = 0, .external_lex_state = 3}, + [2004] = {.lex_state = 58, .external_lex_state = 3}, + [2005] = {.lex_state = 10, .external_lex_state = 3}, + [2006] = {.lex_state = 58, .external_lex_state = 3}, [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 0, .external_lex_state = 3}, + [2008] = {.lex_state = 3, .external_lex_state = 3}, [2009] = {.lex_state = 0, .external_lex_state = 3}, - [2010] = {.lex_state = 3, .external_lex_state = 3}, - [2011] = {.lex_state = 57, .external_lex_state = 3}, - [2012] = {.lex_state = 57, .external_lex_state = 3}, - [2013] = {.lex_state = 3, .external_lex_state = 3}, - [2014] = {.lex_state = 7, .external_lex_state = 3}, - [2015] = {.lex_state = 0, .external_lex_state = 3}, - [2016] = {.lex_state = 57, .external_lex_state = 3}, + [2010] = {.lex_state = 0, .external_lex_state = 3}, + [2011] = {.lex_state = 0, .external_lex_state = 3}, + [2012] = {.lex_state = 3, .external_lex_state = 3}, + [2013] = {.lex_state = 0, .external_lex_state = 3}, + [2014] = {.lex_state = 0, .external_lex_state = 3}, + [2015] = {.lex_state = 7, .external_lex_state = 3}, + [2016] = {.lex_state = 58, .external_lex_state = 3}, [2017] = {.lex_state = 0, .external_lex_state = 3}, - [2018] = {.lex_state = 57, .external_lex_state = 3}, - [2019] = {.lex_state = 10, .external_lex_state = 3}, - [2020] = {.lex_state = 3, .external_lex_state = 3}, - [2021] = {.lex_state = 0, .external_lex_state = 3}, - [2022] = {.lex_state = 3, .external_lex_state = 3}, + [2018] = {.lex_state = 0, .external_lex_state = 3}, + [2019] = {.lex_state = 0, .external_lex_state = 3}, + [2020] = {.lex_state = 0, .external_lex_state = 3}, + [2021] = {.lex_state = 58, .external_lex_state = 3}, + [2022] = {.lex_state = 0, .external_lex_state = 3}, [2023] = {.lex_state = 0, .external_lex_state = 3}, [2024] = {.lex_state = 0, .external_lex_state = 3}, - [2025] = {.lex_state = 57, .external_lex_state = 3}, + [2025] = {.lex_state = 58, .external_lex_state = 3}, [2026] = {.lex_state = 0, .external_lex_state = 3}, [2027] = {.lex_state = 0, .external_lex_state = 3}, [2028] = {.lex_state = 0, .external_lex_state = 3}, - [2029] = {.lex_state = 0, .external_lex_state = 3}, - [2030] = {.lex_state = 57, .external_lex_state = 3}, + [2029] = {.lex_state = 7, .external_lex_state = 3}, + [2030] = {.lex_state = 0, .external_lex_state = 3}, [2031] = {.lex_state = 0, .external_lex_state = 3}, [2032] = {.lex_state = 0, .external_lex_state = 3}, - [2033] = {.lex_state = 0, .external_lex_state = 3}, + [2033] = {.lex_state = 3, .external_lex_state = 3}, [2034] = {.lex_state = 0, .external_lex_state = 3}, [2035] = {.lex_state = 0, .external_lex_state = 3}, [2036] = {.lex_state = 0, .external_lex_state = 3}, - [2037] = {.lex_state = 57, .external_lex_state = 3}, - [2038] = {.lex_state = 0, .external_lex_state = 3}, - [2039] = {.lex_state = 3, .external_lex_state = 3}, + [2037] = {.lex_state = 58, .external_lex_state = 3}, + [2038] = {.lex_state = 58, .external_lex_state = 3}, + [2039] = {.lex_state = 0, .external_lex_state = 3}, [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 57, .external_lex_state = 3}, + [2041] = {.lex_state = 0, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, - [2043] = {.lex_state = 0, .external_lex_state = 3}, - [2044] = {.lex_state = 0, .external_lex_state = 3}, - [2045] = {.lex_state = 0, .external_lex_state = 3}, - [2046] = {.lex_state = 57, .external_lex_state = 3}, - [2047] = {.lex_state = 57, .external_lex_state = 3}, - [2048] = {.lex_state = 3, .external_lex_state = 3}, - [2049] = {.lex_state = 7, .external_lex_state = 3}, + [2043] = {.lex_state = 58, .external_lex_state = 3}, + [2044] = {.lex_state = 58, .external_lex_state = 3}, + [2045] = {.lex_state = 58, .external_lex_state = 3}, + [2046] = {.lex_state = 0, .external_lex_state = 3}, + [2047] = {.lex_state = 58, .external_lex_state = 3}, + [2048] = {.lex_state = 0, .external_lex_state = 3}, + [2049] = {.lex_state = 58, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, [2051] = {.lex_state = 0, .external_lex_state = 3}, [2052] = {.lex_state = 0, .external_lex_state = 3}, [2053] = {.lex_state = 0, .external_lex_state = 3}, - [2054] = {.lex_state = 0, .external_lex_state = 3}, - [2055] = {.lex_state = 0, .external_lex_state = 3}, - [2056] = {.lex_state = 0, .external_lex_state = 3}, + [2054] = {.lex_state = 3, .external_lex_state = 3}, + [2055] = {.lex_state = 58, .external_lex_state = 3}, + [2056] = {.lex_state = 58, .external_lex_state = 3}, [2057] = {.lex_state = 0, .external_lex_state = 3}, [2058] = {.lex_state = 0, .external_lex_state = 3}, - [2059] = {.lex_state = 0, .external_lex_state = 3}, + [2059] = {.lex_state = 58, .external_lex_state = 3}, [2060] = {.lex_state = 0, .external_lex_state = 3}, - [2061] = {.lex_state = 0, .external_lex_state = 3}, - [2062] = {.lex_state = 0, .external_lex_state = 3}, - [2063] = {.lex_state = 0, .external_lex_state = 3}, + [2061] = {.lex_state = 58, .external_lex_state = 3}, + [2062] = {.lex_state = 7, .external_lex_state = 3}, + [2063] = {.lex_state = 58, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 57, .external_lex_state = 3}, + [2065] = {.lex_state = 0, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, - [2067] = {.lex_state = 0, .external_lex_state = 3}, - [2068] = {.lex_state = 0, .external_lex_state = 3}, + [2067] = {.lex_state = 7, .external_lex_state = 3}, + [2068] = {.lex_state = 7, .external_lex_state = 3}, [2069] = {.lex_state = 0, .external_lex_state = 3}, - [2070] = {.lex_state = 0, .external_lex_state = 3}, - [2071] = {.lex_state = 57, .external_lex_state = 3}, + [2070] = {.lex_state = 7, .external_lex_state = 3}, + [2071] = {.lex_state = 7, .external_lex_state = 3}, [2072] = {.lex_state = 0, .external_lex_state = 3}, - [2073] = {.lex_state = 57, .external_lex_state = 3}, - [2074] = {.lex_state = 57, .external_lex_state = 3}, - [2075] = {.lex_state = 57, .external_lex_state = 3}, - [2076] = {.lex_state = 0, .external_lex_state = 3}, + [2073] = {.lex_state = 0, .external_lex_state = 3}, + [2074] = {.lex_state = 7, .external_lex_state = 3}, + [2075] = {.lex_state = 58, .external_lex_state = 3}, + [2076] = {.lex_state = 58, .external_lex_state = 3}, [2077] = {.lex_state = 0, .external_lex_state = 3}, [2078] = {.lex_state = 0, .external_lex_state = 3}, - [2079] = {.lex_state = 57, .external_lex_state = 3}, - [2080] = {.lex_state = 0, .external_lex_state = 3}, + [2079] = {.lex_state = 0, .external_lex_state = 3}, + [2080] = {.lex_state = 58, .external_lex_state = 3}, [2081] = {.lex_state = 0, .external_lex_state = 3}, - [2082] = {.lex_state = 0, .external_lex_state = 3}, - [2083] = {.lex_state = 0, .external_lex_state = 3}, + [2082] = {.lex_state = 7, .external_lex_state = 3}, + [2083] = {.lex_state = 7, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 0, .external_lex_state = 3}, - [2086] = {.lex_state = 0, .external_lex_state = 3}, - [2087] = {.lex_state = 57, .external_lex_state = 3}, - [2088] = {.lex_state = 0, .external_lex_state = 3}, - [2089] = {.lex_state = 0, .external_lex_state = 3}, - [2090] = {.lex_state = 7, .external_lex_state = 3}, - [2091] = {.lex_state = 7, .external_lex_state = 3}, - [2092] = {.lex_state = 57, .external_lex_state = 3}, - [2093] = {.lex_state = 0, .external_lex_state = 3}, - [2094] = {.lex_state = 0, .external_lex_state = 3}, + [2085] = {.lex_state = 58, .external_lex_state = 3}, + [2086] = {.lex_state = 58, .external_lex_state = 3}, + [2087] = {.lex_state = 0, .external_lex_state = 3}, + [2088] = {.lex_state = 58, .external_lex_state = 3}, + [2089] = {.lex_state = 58, .external_lex_state = 3}, + [2090] = {.lex_state = 58, .external_lex_state = 3}, + [2091] = {.lex_state = 0, .external_lex_state = 3}, + [2092] = {.lex_state = 0, .external_lex_state = 3}, + [2093] = {.lex_state = 7, .external_lex_state = 3}, + [2094] = {.lex_state = 58, .external_lex_state = 3}, [2095] = {.lex_state = 0, .external_lex_state = 3}, - [2096] = {.lex_state = 57, .external_lex_state = 3}, + [2096] = {.lex_state = 0, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, [2098] = {.lex_state = 0, .external_lex_state = 3}, [2099] = {.lex_state = 0, .external_lex_state = 3}, [2100] = {.lex_state = 0, .external_lex_state = 3}, - [2101] = {.lex_state = 0, .external_lex_state = 3}, - [2102] = {.lex_state = 0, .external_lex_state = 3}, + [2101] = {.lex_state = 58, .external_lex_state = 3}, + [2102] = {.lex_state = 58, .external_lex_state = 3}, [2103] = {.lex_state = 0, .external_lex_state = 3}, [2104] = {.lex_state = 0, .external_lex_state = 3}, - [2105] = {.lex_state = 57, .external_lex_state = 3}, - [2106] = {.lex_state = 57, .external_lex_state = 3}, + [2105] = {.lex_state = 0, .external_lex_state = 3}, + [2106] = {.lex_state = 7, .external_lex_state = 3}, [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 7, .external_lex_state = 3}, + [2108] = {.lex_state = 58, .external_lex_state = 3}, [2109] = {.lex_state = 0, .external_lex_state = 3}, [2110] = {.lex_state = 0, .external_lex_state = 3}, - [2111] = {.lex_state = 57, .external_lex_state = 3}, + [2111] = {.lex_state = 0, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 57, .external_lex_state = 3}, - [2114] = {.lex_state = 7, .external_lex_state = 3}, + [2113] = {.lex_state = 58, .external_lex_state = 3}, + [2114] = {.lex_state = 0, .external_lex_state = 3}, [2115] = {.lex_state = 0, .external_lex_state = 3}, - [2116] = {.lex_state = 10, .external_lex_state = 3}, + [2116] = {.lex_state = 0, .external_lex_state = 3}, [2117] = {.lex_state = 0, .external_lex_state = 3}, [2118] = {.lex_state = 0, .external_lex_state = 3}, - [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 57, .external_lex_state = 3}, - [2121] = {.lex_state = 57, .external_lex_state = 3}, - [2122] = {.lex_state = 0, .external_lex_state = 3}, - [2123] = {.lex_state = 0, .external_lex_state = 3}, + [2119] = {.lex_state = 58, .external_lex_state = 3}, + [2120] = {.lex_state = 58, .external_lex_state = 3}, + [2121] = {.lex_state = 7, .external_lex_state = 3}, + [2122] = {.lex_state = 3, .external_lex_state = 3}, + [2123] = {.lex_state = 7, .external_lex_state = 3}, [2124] = {.lex_state = 0, .external_lex_state = 3}, [2125] = {.lex_state = 0, .external_lex_state = 3}, [2126] = {.lex_state = 0, .external_lex_state = 3}, - [2127] = {.lex_state = 0, .external_lex_state = 3}, + [2127] = {.lex_state = 3, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, [2129] = {.lex_state = 0, .external_lex_state = 3}, - [2130] = {.lex_state = 7, .external_lex_state = 3}, - [2131] = {.lex_state = 0, .external_lex_state = 3}, - [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 7, .external_lex_state = 3}, - [2134] = {.lex_state = 17, .external_lex_state = 3}, + [2130] = {.lex_state = 0, .external_lex_state = 3}, + [2131] = {.lex_state = 18, .external_lex_state = 3}, + [2132] = {.lex_state = 58, .external_lex_state = 3}, + [2133] = {.lex_state = 58, .external_lex_state = 3}, + [2134] = {.lex_state = 58, .external_lex_state = 3}, [2135] = {.lex_state = 0, .external_lex_state = 3}, [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 7, .external_lex_state = 3}, - [2138] = {.lex_state = 0, .external_lex_state = 3}, - [2139] = {.lex_state = 7, .external_lex_state = 3}, + [2137] = {.lex_state = 58, .external_lex_state = 3}, + [2138] = {.lex_state = 58, .external_lex_state = 3}, + [2139] = {.lex_state = 0, .external_lex_state = 3}, [2140] = {.lex_state = 0, .external_lex_state = 3}, - [2141] = {.lex_state = 57, .external_lex_state = 3}, + [2141] = {.lex_state = 58, .external_lex_state = 3}, [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 57, .external_lex_state = 3}, + [2143] = {.lex_state = 58, .external_lex_state = 3}, [2144] = {.lex_state = 0, .external_lex_state = 3}, - [2145] = {.lex_state = 7, .external_lex_state = 3}, + [2145] = {.lex_state = 0, .external_lex_state = 3}, [2146] = {.lex_state = 0, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 57, .external_lex_state = 3}, - [2149] = {.lex_state = 57, .external_lex_state = 3}, - [2150] = {.lex_state = 7, .external_lex_state = 3}, + [2148] = {.lex_state = 0, .external_lex_state = 3}, + [2149] = {.lex_state = 0, .external_lex_state = 3}, + [2150] = {.lex_state = 58, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, - [2152] = {.lex_state = 57, .external_lex_state = 3}, + [2152] = {.lex_state = 0, .external_lex_state = 3}, [2153] = {.lex_state = 0, .external_lex_state = 3}, - [2154] = {.lex_state = 7, .external_lex_state = 3}, + [2154] = {.lex_state = 0, .external_lex_state = 3}, [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 57, .external_lex_state = 3}, + [2156] = {.lex_state = 0, .external_lex_state = 3}, [2157] = {.lex_state = 0, .external_lex_state = 3}, - [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 0, .external_lex_state = 3}, + [2158] = {.lex_state = 7, .external_lex_state = 3}, + [2159] = {.lex_state = 7, .external_lex_state = 3}, [2160] = {.lex_state = 0, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, - [2162] = {.lex_state = 57, .external_lex_state = 3}, + [2162] = {.lex_state = 0, .external_lex_state = 3}, [2163] = {.lex_state = 0, .external_lex_state = 3}, - [2164] = {.lex_state = 57, .external_lex_state = 3}, - [2165] = {.lex_state = 57, .external_lex_state = 3}, + [2164] = {.lex_state = 7, .external_lex_state = 3}, + [2165] = {.lex_state = 0, .external_lex_state = 3}, [2166] = {.lex_state = 0, .external_lex_state = 3}, [2167] = {.lex_state = 0, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, - [2169] = {.lex_state = 7, .external_lex_state = 3}, + [2169] = {.lex_state = 4, .external_lex_state = 3}, [2170] = {.lex_state = 0, .external_lex_state = 3}, - [2171] = {.lex_state = 0, .external_lex_state = 3}, - [2172] = {.lex_state = 57, .external_lex_state = 3}, + [2171] = {.lex_state = 58, .external_lex_state = 3}, + [2172] = {.lex_state = 0, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, [2174] = {.lex_state = 0, .external_lex_state = 3}, - [2175] = {.lex_state = 57, .external_lex_state = 3}, + [2175] = {.lex_state = 0, .external_lex_state = 3}, [2176] = {.lex_state = 0, .external_lex_state = 3}, [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 0, .external_lex_state = 3}, - [2179] = {.lex_state = 0, .external_lex_state = 3}, - [2180] = {.lex_state = 17, .external_lex_state = 3}, - [2181] = {.lex_state = 57, .external_lex_state = 3}, + [2178] = {.lex_state = 7, .external_lex_state = 3}, + [2179] = {.lex_state = 58, .external_lex_state = 3}, + [2180] = {.lex_state = 0, .external_lex_state = 3}, + [2181] = {.lex_state = 7, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, - [2183] = {.lex_state = 17, .external_lex_state = 3}, - [2184] = {.lex_state = 0, .external_lex_state = 3}, - [2185] = {.lex_state = 7, .external_lex_state = 3}, + [2183] = {.lex_state = 0, .external_lex_state = 3}, + [2184] = {.lex_state = 58, .external_lex_state = 3}, + [2185] = {.lex_state = 58, .external_lex_state = 3}, [2186] = {.lex_state = 0, .external_lex_state = 3}, - [2187] = {.lex_state = 0, .external_lex_state = 3}, + [2187] = {.lex_state = 58, .external_lex_state = 3}, [2188] = {.lex_state = 0, .external_lex_state = 3}, - [2189] = {.lex_state = 4, .external_lex_state = 3}, - [2190] = {.lex_state = 0, .external_lex_state = 3}, - [2191] = {.lex_state = 0, .external_lex_state = 3}, - [2192] = {.lex_state = 7, .external_lex_state = 3}, + [2189] = {.lex_state = 0, .external_lex_state = 3}, + [2190] = {.lex_state = 7, .external_lex_state = 3}, + [2191] = {.lex_state = 58, .external_lex_state = 3}, + [2192] = {.lex_state = 0, .external_lex_state = 3}, [2193] = {.lex_state = 7, .external_lex_state = 3}, [2194] = {.lex_state = 0, .external_lex_state = 3}, - [2195] = {.lex_state = 57, .external_lex_state = 3}, + [2195] = {.lex_state = 0, .external_lex_state = 3}, [2196] = {.lex_state = 7, .external_lex_state = 3}, - [2197] = {.lex_state = 0, .external_lex_state = 3}, - [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 0, .external_lex_state = 3}, + [2197] = {.lex_state = 58, .external_lex_state = 3}, + [2198] = {.lex_state = 4, .external_lex_state = 3}, + [2199] = {.lex_state = 58, .external_lex_state = 3}, [2200] = {.lex_state = 0, .external_lex_state = 3}, [2201] = {.lex_state = 0, .external_lex_state = 3}, [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 17, .external_lex_state = 3}, - [2204] = {.lex_state = 57, .external_lex_state = 3}, - [2205] = {.lex_state = 57, .external_lex_state = 3}, + [2203] = {.lex_state = 0, .external_lex_state = 3}, + [2204] = {.lex_state = 0, .external_lex_state = 3}, + [2205] = {.lex_state = 58, .external_lex_state = 3}, [2206] = {.lex_state = 0, .external_lex_state = 3}, [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 57, .external_lex_state = 3}, - [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 0, .external_lex_state = 3}, + [2208] = {.lex_state = 58, .external_lex_state = 3}, + [2209] = {.lex_state = 7, .external_lex_state = 3}, + [2210] = {.lex_state = 58, .external_lex_state = 3}, [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 57, .external_lex_state = 3}, - [2213] = {.lex_state = 17, .external_lex_state = 3}, - [2214] = {.lex_state = 57, .external_lex_state = 3}, + [2212] = {.lex_state = 58, .external_lex_state = 3}, + [2213] = {.lex_state = 0, .external_lex_state = 3}, + [2214] = {.lex_state = 0, .external_lex_state = 3}, [2215] = {.lex_state = 0, .external_lex_state = 3}, - [2216] = {.lex_state = 0, .external_lex_state = 3}, - [2217] = {.lex_state = 57, .external_lex_state = 3}, + [2216] = {.lex_state = 7, .external_lex_state = 3}, + [2217] = {.lex_state = 0, .external_lex_state = 3}, [2218] = {.lex_state = 0, .external_lex_state = 3}, - [2219] = {.lex_state = 7, .external_lex_state = 3}, + [2219] = {.lex_state = 0, .external_lex_state = 3}, [2220] = {.lex_state = 0, .external_lex_state = 3}, - [2221] = {.lex_state = 0, .external_lex_state = 3}, - [2222] = {.lex_state = 7, .external_lex_state = 3}, - [2223] = {.lex_state = 0, .external_lex_state = 3}, + [2221] = {.lex_state = 18, .external_lex_state = 3}, + [2222] = {.lex_state = 0, .external_lex_state = 3}, + [2223] = {.lex_state = 58, .external_lex_state = 3}, [2224] = {.lex_state = 0, .external_lex_state = 3}, [2225] = {.lex_state = 0, .external_lex_state = 3}, - [2226] = {.lex_state = 0, .external_lex_state = 3}, - [2227] = {.lex_state = 0, .external_lex_state = 3}, - [2228] = {.lex_state = 4, .external_lex_state = 3}, - [2229] = {.lex_state = 0, .external_lex_state = 3}, + [2226] = {.lex_state = 7, .external_lex_state = 3}, + [2227] = {.lex_state = 58, .external_lex_state = 3}, + [2228] = {.lex_state = 7, .external_lex_state = 3}, + [2229] = {.lex_state = 58, .external_lex_state = 3}, [2230] = {.lex_state = 0, .external_lex_state = 3}, - [2231] = {.lex_state = 0, .external_lex_state = 3}, + [2231] = {.lex_state = 58, .external_lex_state = 3}, [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 57, .external_lex_state = 3}, - [2234] = {.lex_state = 7, .external_lex_state = 3}, + [2233] = {.lex_state = 58, .external_lex_state = 3}, + [2234] = {.lex_state = 0, .external_lex_state = 3}, [2235] = {.lex_state = 0, .external_lex_state = 3}, - [2236] = {.lex_state = 0, .external_lex_state = 3}, + [2236] = {.lex_state = 58, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, [2238] = {.lex_state = 0, .external_lex_state = 3}, [2239] = {.lex_state = 0, .external_lex_state = 3}, [2240] = {.lex_state = 0, .external_lex_state = 3}, [2241] = {.lex_state = 0, .external_lex_state = 3}, - [2242] = {.lex_state = 57, .external_lex_state = 3}, + [2242] = {.lex_state = 0, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, [2244] = {.lex_state = 0, .external_lex_state = 3}, - [2245] = {.lex_state = 57, .external_lex_state = 3}, - [2246] = {.lex_state = 0, .external_lex_state = 5}, - [2247] = {.lex_state = 0, .external_lex_state = 3}, - [2248] = {.lex_state = 7, .external_lex_state = 3}, + [2245] = {.lex_state = 7, .external_lex_state = 3}, + [2246] = {.lex_state = 0, .external_lex_state = 3}, + [2247] = {.lex_state = 58, .external_lex_state = 3}, + [2248] = {.lex_state = 0, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, [2250] = {.lex_state = 0, .external_lex_state = 3}, - [2251] = {.lex_state = 57, .external_lex_state = 3}, + [2251] = {.lex_state = 0, .external_lex_state = 3}, [2252] = {.lex_state = 0, .external_lex_state = 3}, [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 57, .external_lex_state = 3}, - [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 7, .external_lex_state = 3}, + [2254] = {.lex_state = 0, .external_lex_state = 3}, + [2255] = {.lex_state = 58, .external_lex_state = 3}, + [2256] = {.lex_state = 0, .external_lex_state = 3}, [2257] = {.lex_state = 0, .external_lex_state = 3}, - [2258] = {.lex_state = 7, .external_lex_state = 3}, + [2258] = {.lex_state = 0, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 57, .external_lex_state = 3}, - [2261] = {.lex_state = 0, .external_lex_state = 3}, + [2260] = {.lex_state = 0, .external_lex_state = 3}, + [2261] = {.lex_state = 58, .external_lex_state = 3}, [2262] = {.lex_state = 0, .external_lex_state = 3}, - [2263] = {.lex_state = 10, .external_lex_state = 3}, + [2263] = {.lex_state = 0, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 17, .external_lex_state = 3}, + [2265] = {.lex_state = 7, .external_lex_state = 3}, [2266] = {.lex_state = 0, .external_lex_state = 3}, - [2267] = {.lex_state = 0, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 3}, + [2267] = {.lex_state = 58, .external_lex_state = 3}, + [2268] = {.lex_state = 0, .external_lex_state = 5}, [2269] = {.lex_state = 0, .external_lex_state = 3}, [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 0, .external_lex_state = 3}, + [2271] = {.lex_state = 58, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, - [2273] = {.lex_state = 57, .external_lex_state = 3}, + [2273] = {.lex_state = 58, .external_lex_state = 3}, [2274] = {.lex_state = 0, .external_lex_state = 3}, - [2275] = {.lex_state = 0, .external_lex_state = 3}, - [2276] = {.lex_state = 57, .external_lex_state = 3}, + [2275] = {.lex_state = 7, .external_lex_state = 3}, + [2276] = {.lex_state = 7, .external_lex_state = 3}, [2277] = {.lex_state = 0, .external_lex_state = 3}, - [2278] = {.lex_state = 0, .external_lex_state = 3}, + [2278] = {.lex_state = 7, .external_lex_state = 3}, [2279] = {.lex_state = 0, .external_lex_state = 3}, - [2280] = {.lex_state = 57, .external_lex_state = 3}, + [2280] = {.lex_state = 58, .external_lex_state = 3}, [2281] = {.lex_state = 0, .external_lex_state = 3}, [2282] = {.lex_state = 0, .external_lex_state = 3}, - [2283] = {.lex_state = 7, .external_lex_state = 3}, - [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 57, .external_lex_state = 3}, - [2286] = {.lex_state = 57, .external_lex_state = 3}, + [2283] = {.lex_state = 0, .external_lex_state = 3}, + [2284] = {.lex_state = 7, .external_lex_state = 3}, + [2285] = {.lex_state = 7, .external_lex_state = 3}, + [2286] = {.lex_state = 7, .external_lex_state = 3}, [2287] = {.lex_state = 0, .external_lex_state = 3}, - [2288] = {.lex_state = 0, .external_lex_state = 3}, + [2288] = {.lex_state = 18, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, [2290] = {.lex_state = 0, .external_lex_state = 3}, - [2291] = {.lex_state = 7, .external_lex_state = 3}, + [2291] = {.lex_state = 0, .external_lex_state = 3}, [2292] = {.lex_state = 0, .external_lex_state = 3}, [2293] = {.lex_state = 0, .external_lex_state = 3}, [2294] = {.lex_state = 0, .external_lex_state = 3}, - [2295] = {.lex_state = 57, .external_lex_state = 3}, + [2295] = {.lex_state = 0, .external_lex_state = 3}, [2296] = {.lex_state = 0, .external_lex_state = 3}, - [2297] = {.lex_state = 57, .external_lex_state = 3}, - [2298] = {.lex_state = 7, .external_lex_state = 3}, - [2299] = {.lex_state = 7, .external_lex_state = 3}, - [2300] = {.lex_state = 0, .external_lex_state = 3}, - [2301] = {.lex_state = 0, .external_lex_state = 3}, - [2302] = {.lex_state = 0, .external_lex_state = 3}, - [2303] = {.lex_state = 57, .external_lex_state = 3}, - [2304] = {.lex_state = 7, .external_lex_state = 3}, + [2297] = {.lex_state = 18, .external_lex_state = 3}, + [2298] = {.lex_state = 18, .external_lex_state = 3}, + [2299] = {.lex_state = 0, .external_lex_state = 3}, + [2300] = {.lex_state = 58, .external_lex_state = 3}, + [2301] = {.lex_state = 58, .external_lex_state = 3}, + [2302] = {.lex_state = 58, .external_lex_state = 3}, + [2303] = {.lex_state = 0, .external_lex_state = 3}, + [2304] = {.lex_state = 0, .external_lex_state = 3}, [2305] = {.lex_state = 0, .external_lex_state = 3}, - [2306] = {.lex_state = 0, .external_lex_state = 3}, - [2307] = {.lex_state = 57, .external_lex_state = 3}, + [2306] = {.lex_state = 18, .external_lex_state = 3}, + [2307] = {.lex_state = 7, .external_lex_state = 3}, [2308] = {.lex_state = 0, .external_lex_state = 3}, - [2309] = {.lex_state = 57, .external_lex_state = 3}, - [2310] = {.lex_state = 7, .external_lex_state = 3}, + [2309] = {.lex_state = 0, .external_lex_state = 3}, + [2310] = {.lex_state = 58, .external_lex_state = 3}, [2311] = {.lex_state = 0, .external_lex_state = 3}, [2312] = {.lex_state = 0, .external_lex_state = 3}, - [2313] = {.lex_state = 7, .external_lex_state = 3}, - [2314] = {.lex_state = 0, .external_lex_state = 3}, - [2315] = {.lex_state = 0, .external_lex_state = 3}, - [2316] = {.lex_state = 7, .external_lex_state = 3}, - [2317] = {.lex_state = 7, .external_lex_state = 3}, - [2318] = {.lex_state = 7, .external_lex_state = 3}, - [2319] = {.lex_state = 0, .external_lex_state = 3}, - [2320] = {.lex_state = 7, .external_lex_state = 3}, + [2313] = {.lex_state = 0, .external_lex_state = 3}, + [2314] = {.lex_state = 58, .external_lex_state = 3}, + [2315] = {.lex_state = 58, .external_lex_state = 3}, + [2316] = {.lex_state = 10, .external_lex_state = 3}, + [2317] = {.lex_state = 0, .external_lex_state = 3}, + [2318] = {.lex_state = 58, .external_lex_state = 3}, + [2319] = {.lex_state = 58, .external_lex_state = 3}, + [2320] = {.lex_state = 58, .external_lex_state = 3}, [2321] = {.lex_state = 7, .external_lex_state = 3}, - [2322] = {.lex_state = 7, .external_lex_state = 3}, + [2322] = {.lex_state = 0, .external_lex_state = 3}, [2323] = {.lex_state = 0, .external_lex_state = 3}, [2324] = {.lex_state = 7, .external_lex_state = 3}, - [2325] = {.lex_state = 57, .external_lex_state = 3}, - [2326] = {.lex_state = 7, .external_lex_state = 3}, - [2327] = {.lex_state = 7, .external_lex_state = 3}, - [2328] = {.lex_state = 57, .external_lex_state = 3}, - [2329] = {.lex_state = 7, .external_lex_state = 3}, - [2330] = {.lex_state = 7, .external_lex_state = 3}, - [2331] = {.lex_state = 7, .external_lex_state = 3}, + [2325] = {.lex_state = 0, .external_lex_state = 3}, + [2326] = {.lex_state = 0, .external_lex_state = 3}, + [2327] = {.lex_state = 0, .external_lex_state = 3}, + [2328] = {.lex_state = 0, .external_lex_state = 3}, + [2329] = {.lex_state = 0, .external_lex_state = 3}, + [2330] = {.lex_state = 0, .external_lex_state = 3}, + [2331] = {.lex_state = 0, .external_lex_state = 3}, [2332] = {.lex_state = 7, .external_lex_state = 3}, - [2333] = {.lex_state = 7, .external_lex_state = 3}, - [2334] = {.lex_state = 7, .external_lex_state = 3}, - [2335] = {.lex_state = 7, .external_lex_state = 3}, + [2333] = {.lex_state = 18, .external_lex_state = 3}, + [2334] = {.lex_state = 0, .external_lex_state = 3}, + [2335] = {.lex_state = 0, .external_lex_state = 3}, [2336] = {.lex_state = 0, .external_lex_state = 3}, - [2337] = {.lex_state = 0, .external_lex_state = 3}, - [2338] = {.lex_state = 7, .external_lex_state = 3}, - [2339] = {.lex_state = 0, .external_lex_state = 3}, - [2340] = {.lex_state = 7, .external_lex_state = 3}, - [2341] = {.lex_state = 0, .external_lex_state = 3}, - [2342] = {.lex_state = 7, .external_lex_state = 3}, + [2337] = {.lex_state = 7, .external_lex_state = 3}, + [2338] = {.lex_state = 0, .external_lex_state = 3}, + [2339] = {.lex_state = 7, .external_lex_state = 3}, + [2340] = {.lex_state = 0, .external_lex_state = 3}, + [2341] = {.lex_state = 7, .external_lex_state = 3}, + [2342] = {.lex_state = 0, .external_lex_state = 3}, [2343] = {.lex_state = 7, .external_lex_state = 3}, - [2344] = {.lex_state = 0, .external_lex_state = 3}, - [2345] = {.lex_state = 0, .external_lex_state = 3}, - [2346] = {.lex_state = 7, .external_lex_state = 3}, - [2347] = {.lex_state = 0, .external_lex_state = 3}, - [2348] = {.lex_state = 0, .external_lex_state = 3}, - [2349] = {.lex_state = 7, .external_lex_state = 3}, + [2344] = {.lex_state = 7, .external_lex_state = 3}, + [2345] = {.lex_state = 10, .external_lex_state = 3}, + [2346] = {.lex_state = 58, .external_lex_state = 3}, + [2347] = {.lex_state = 7, .external_lex_state = 3}, + [2348] = {.lex_state = 7, .external_lex_state = 3}, + [2349] = {.lex_state = 0, .external_lex_state = 3}, [2350] = {.lex_state = 7, .external_lex_state = 3}, - [2351] = {.lex_state = 7, .external_lex_state = 3}, + [2351] = {.lex_state = 0, .external_lex_state = 3}, [2352] = {.lex_state = 7, .external_lex_state = 3}, [2353] = {.lex_state = 7, .external_lex_state = 3}, - [2354] = {.lex_state = 0, .external_lex_state = 3}, + [2354] = {.lex_state = 7, .external_lex_state = 3}, [2355] = {.lex_state = 7, .external_lex_state = 3}, - [2356] = {.lex_state = 7, .external_lex_state = 3}, - [2357] = {.lex_state = 7, .external_lex_state = 3}, + [2356] = {.lex_state = 0, .external_lex_state = 3}, + [2357] = {.lex_state = 0, .external_lex_state = 3}, [2358] = {.lex_state = 0, .external_lex_state = 3}, - [2359] = {.lex_state = 7, .external_lex_state = 3}, - [2360] = {.lex_state = 7, .external_lex_state = 3}, + [2359] = {.lex_state = 0, .external_lex_state = 3}, + [2360] = {.lex_state = 0, .external_lex_state = 3}, [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 7, .external_lex_state = 3}, - [2363] = {.lex_state = 7, .external_lex_state = 3}, + [2362] = {.lex_state = 0, .external_lex_state = 3}, + [2363] = {.lex_state = 0, .external_lex_state = 3}, [2364] = {.lex_state = 7, .external_lex_state = 3}, [2365] = {.lex_state = 7, .external_lex_state = 3}, [2366] = {.lex_state = 7, .external_lex_state = 3}, - [2367] = {.lex_state = 0, .external_lex_state = 3}, - [2368] = {.lex_state = 7, .external_lex_state = 3}, + [2367] = {.lex_state = 7, .external_lex_state = 3}, + [2368] = {.lex_state = 10, .external_lex_state = 3}, [2369] = {.lex_state = 0, .external_lex_state = 3}, [2370] = {.lex_state = 0, .external_lex_state = 3}, - [2371] = {.lex_state = 7, .external_lex_state = 3}, - [2372] = {.lex_state = 7, .external_lex_state = 3}, + [2371] = {.lex_state = 0, .external_lex_state = 3}, + [2372] = {.lex_state = 0, .external_lex_state = 3}, [2373] = {.lex_state = 7, .external_lex_state = 3}, - [2374] = {.lex_state = 7, .external_lex_state = 3}, + [2374] = {.lex_state = 10, .external_lex_state = 3}, [2375] = {.lex_state = 7, .external_lex_state = 3}, - [2376] = {.lex_state = 0, .external_lex_state = 3}, + [2376] = {.lex_state = 7, .external_lex_state = 3}, [2377] = {.lex_state = 7, .external_lex_state = 3}, - [2378] = {.lex_state = 0, .external_lex_state = 3}, - [2379] = {.lex_state = 10, .external_lex_state = 3}, - [2380] = {.lex_state = 7, .external_lex_state = 3}, + [2378] = {.lex_state = 7, .external_lex_state = 3}, + [2379] = {.lex_state = 7, .external_lex_state = 3}, + [2380] = {.lex_state = 0, .external_lex_state = 3}, [2381] = {.lex_state = 7, .external_lex_state = 3}, [2382] = {.lex_state = 0, .external_lex_state = 3}, [2383] = {.lex_state = 7, .external_lex_state = 3}, @@ -14386,162 +14442,185 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2385] = {.lex_state = 7, .external_lex_state = 3}, [2386] = {.lex_state = 7, .external_lex_state = 3}, [2387] = {.lex_state = 7, .external_lex_state = 3}, - [2388] = {.lex_state = 0, .external_lex_state = 3}, + [2388] = {.lex_state = 7, .external_lex_state = 3}, [2389] = {.lex_state = 7, .external_lex_state = 3}, - [2390] = {.lex_state = 7, .external_lex_state = 3}, + [2390] = {.lex_state = 10, .external_lex_state = 3}, [2391] = {.lex_state = 7, .external_lex_state = 3}, - [2392] = {.lex_state = 57, .external_lex_state = 3}, - [2393] = {.lex_state = 7, .external_lex_state = 3}, - [2394] = {.lex_state = 0, .external_lex_state = 3}, - [2395] = {.lex_state = 0, .external_lex_state = 3}, + [2392] = {.lex_state = 7, .external_lex_state = 3}, + [2393] = {.lex_state = 0, .external_lex_state = 3}, + [2394] = {.lex_state = 7, .external_lex_state = 3}, + [2395] = {.lex_state = 7, .external_lex_state = 3}, [2396] = {.lex_state = 0, .external_lex_state = 3}, - [2397] = {.lex_state = 0, .external_lex_state = 3}, - [2398] = {.lex_state = 0, .external_lex_state = 3}, + [2397] = {.lex_state = 7, .external_lex_state = 3}, + [2398] = {.lex_state = 7, .external_lex_state = 3}, [2399] = {.lex_state = 0, .external_lex_state = 3}, - [2400] = {.lex_state = 0, .external_lex_state = 3}, - [2401] = {.lex_state = 7, .external_lex_state = 3}, + [2400] = {.lex_state = 7, .external_lex_state = 3}, + [2401] = {.lex_state = 0, .external_lex_state = 3}, [2402] = {.lex_state = 0, .external_lex_state = 3}, - [2403] = {.lex_state = 10, .external_lex_state = 3}, + [2403] = {.lex_state = 7, .external_lex_state = 3}, [2404] = {.lex_state = 7, .external_lex_state = 3}, - [2405] = {.lex_state = 10, .external_lex_state = 3}, - [2406] = {.lex_state = 0, .external_lex_state = 3}, - [2407] = {.lex_state = 0, .external_lex_state = 3}, - [2408] = {.lex_state = 57, .external_lex_state = 3}, - [2409] = {.lex_state = 0, .external_lex_state = 3}, + [2405] = {.lex_state = 0, .external_lex_state = 3}, + [2406] = {.lex_state = 7, .external_lex_state = 3}, + [2407] = {.lex_state = 7, .external_lex_state = 3}, + [2408] = {.lex_state = 0, .external_lex_state = 3}, + [2409] = {.lex_state = 58, .external_lex_state = 3}, [2410] = {.lex_state = 0, .external_lex_state = 3}, [2411] = {.lex_state = 7, .external_lex_state = 3}, - [2412] = {.lex_state = 0, .external_lex_state = 3}, + [2412] = {.lex_state = 7, .external_lex_state = 3}, [2413] = {.lex_state = 7, .external_lex_state = 3}, [2414] = {.lex_state = 7, .external_lex_state = 3}, - [2415] = {.lex_state = 7, .external_lex_state = 3}, + [2415] = {.lex_state = 0, .external_lex_state = 3}, [2416] = {.lex_state = 0, .external_lex_state = 3}, [2417] = {.lex_state = 0, .external_lex_state = 3}, - [2418] = {.lex_state = 7, .external_lex_state = 3}, + [2418] = {.lex_state = 0, .external_lex_state = 3}, [2419] = {.lex_state = 0, .external_lex_state = 3}, - [2420] = {.lex_state = 0, .external_lex_state = 3}, + [2420] = {.lex_state = 7, .external_lex_state = 3}, [2421] = {.lex_state = 0, .external_lex_state = 3}, [2422] = {.lex_state = 0, .external_lex_state = 3}, [2423] = {.lex_state = 0, .external_lex_state = 3}, [2424] = {.lex_state = 0, .external_lex_state = 3}, [2425] = {.lex_state = 0, .external_lex_state = 3}, - [2426] = {.lex_state = 10, .external_lex_state = 3}, + [2426] = {.lex_state = 7, .external_lex_state = 3}, [2427] = {.lex_state = 0, .external_lex_state = 3}, - [2428] = {.lex_state = 7, .external_lex_state = 3}, - [2429] = {.lex_state = 7, .external_lex_state = 3}, + [2428] = {.lex_state = 0, .external_lex_state = 3}, + [2429] = {.lex_state = 58, .external_lex_state = 3}, [2430] = {.lex_state = 7, .external_lex_state = 3}, [2431] = {.lex_state = 0, .external_lex_state = 3}, - [2432] = {.lex_state = 0, .external_lex_state = 3}, - [2433] = {.lex_state = 10, .external_lex_state = 3}, + [2432] = {.lex_state = 7, .external_lex_state = 3}, + [2433] = {.lex_state = 7, .external_lex_state = 3}, [2434] = {.lex_state = 7, .external_lex_state = 3}, - [2435] = {.lex_state = 10, .external_lex_state = 3}, + [2435] = {.lex_state = 7, .external_lex_state = 3}, [2436] = {.lex_state = 7, .external_lex_state = 3}, - [2437] = {.lex_state = 0, .external_lex_state = 3}, + [2437] = {.lex_state = 7, .external_lex_state = 3}, [2438] = {.lex_state = 0, .external_lex_state = 3}, [2439] = {.lex_state = 0, .external_lex_state = 3}, - [2440] = {.lex_state = 7, .external_lex_state = 3}, - [2441] = {.lex_state = 0, .external_lex_state = 3}, + [2440] = {.lex_state = 0, .external_lex_state = 3}, + [2441] = {.lex_state = 7, .external_lex_state = 3}, [2442] = {.lex_state = 0, .external_lex_state = 3}, - [2443] = {.lex_state = 0, .external_lex_state = 3}, - [2444] = {.lex_state = 7, .external_lex_state = 3}, + [2443] = {.lex_state = 7, .external_lex_state = 3}, + [2444] = {.lex_state = 0, .external_lex_state = 3}, [2445] = {.lex_state = 0, .external_lex_state = 3}, - [2446] = {.lex_state = 10, .external_lex_state = 3}, - [2447] = {.lex_state = 0, .external_lex_state = 3}, - [2448] = {.lex_state = 7, .external_lex_state = 3}, - [2449] = {.lex_state = 10, .external_lex_state = 3}, + [2446] = {.lex_state = 7, .external_lex_state = 3}, + [2447] = {.lex_state = 7, .external_lex_state = 3}, + [2448] = {.lex_state = 0, .external_lex_state = 3}, + [2449] = {.lex_state = 0, .external_lex_state = 3}, [2450] = {.lex_state = 0, .external_lex_state = 3}, - [2451] = {.lex_state = 7, .external_lex_state = 3}, - [2452] = {.lex_state = 0, .external_lex_state = 3}, + [2451] = {.lex_state = 10, .external_lex_state = 3}, + [2452] = {.lex_state = 7, .external_lex_state = 3}, [2453] = {.lex_state = 0, .external_lex_state = 3}, - [2454] = {.lex_state = 7, .external_lex_state = 3}, - [2455] = {.lex_state = 0, .external_lex_state = 3}, + [2454] = {.lex_state = 0, .external_lex_state = 3}, + [2455] = {.lex_state = 7, .external_lex_state = 3}, [2456] = {.lex_state = 0, .external_lex_state = 3}, - [2457] = {.lex_state = 0, .external_lex_state = 3}, - [2458] = {.lex_state = 7, .external_lex_state = 3}, + [2457] = {.lex_state = 7, .external_lex_state = 3}, + [2458] = {.lex_state = 10, .external_lex_state = 3}, [2459] = {.lex_state = 7, .external_lex_state = 3}, - [2460] = {.lex_state = 0, .external_lex_state = 3}, - [2461] = {.lex_state = 0, .external_lex_state = 3}, - [2462] = {.lex_state = 0, .external_lex_state = 3}, - [2463] = {.lex_state = 0, .external_lex_state = 3}, - [2464] = {.lex_state = 7, .external_lex_state = 3}, - [2465] = {.lex_state = 7, .external_lex_state = 3}, + [2460] = {.lex_state = 7, .external_lex_state = 3}, + [2461] = {.lex_state = 7, .external_lex_state = 3}, + [2462] = {.lex_state = 7, .external_lex_state = 3}, + [2463] = {.lex_state = 7, .external_lex_state = 3}, + [2464] = {.lex_state = 0, .external_lex_state = 3}, + [2465] = {.lex_state = 0, .external_lex_state = 3}, [2466] = {.lex_state = 7, .external_lex_state = 3}, - [2467] = {.lex_state = 0, .external_lex_state = 3}, + [2467] = {.lex_state = 7, .external_lex_state = 3}, [2468] = {.lex_state = 0, .external_lex_state = 3}, [2469] = {.lex_state = 7, .external_lex_state = 3}, - [2470] = {.lex_state = 0, .external_lex_state = 3}, + [2470] = {.lex_state = 58, .external_lex_state = 3}, [2471] = {.lex_state = 0, .external_lex_state = 3}, - [2472] = {.lex_state = 0, .external_lex_state = 3}, - [2473] = {.lex_state = 0, .external_lex_state = 3}, + [2472] = {.lex_state = 10, .external_lex_state = 3}, + [2473] = {.lex_state = 7, .external_lex_state = 3}, [2474] = {.lex_state = 0, .external_lex_state = 3}, - [2475] = {.lex_state = 0, .external_lex_state = 3}, + [2475] = {.lex_state = 7, .external_lex_state = 3}, [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 7, .external_lex_state = 3}, + [2477] = {.lex_state = 10, .external_lex_state = 3}, [2478] = {.lex_state = 0, .external_lex_state = 3}, [2479] = {.lex_state = 0, .external_lex_state = 3}, - [2480] = {.lex_state = 10, .external_lex_state = 3}, + [2480] = {.lex_state = 0, .external_lex_state = 3}, [2481] = {.lex_state = 7, .external_lex_state = 3}, - [2482] = {.lex_state = 0, .external_lex_state = 3}, + [2482] = {.lex_state = 7, .external_lex_state = 3}, [2483] = {.lex_state = 0, .external_lex_state = 3}, - [2484] = {.lex_state = 10, .external_lex_state = 3}, + [2484] = {.lex_state = 0, .external_lex_state = 3}, [2485] = {.lex_state = 0, .external_lex_state = 3}, - [2486] = {.lex_state = 10, .external_lex_state = 3}, - [2487] = {.lex_state = 0, .external_lex_state = 3}, - [2488] = {.lex_state = 0, .external_lex_state = 3}, - [2489] = {.lex_state = 0, .external_lex_state = 3}, - [2490] = {.lex_state = 0, .external_lex_state = 3}, - [2491] = {.lex_state = 10, .external_lex_state = 3}, - [2492] = {.lex_state = 0, .external_lex_state = 3}, - [2493] = {.lex_state = 0, .external_lex_state = 3}, + [2486] = {.lex_state = 7, .external_lex_state = 3}, + [2487] = {.lex_state = 7, .external_lex_state = 3}, + [2488] = {.lex_state = 7, .external_lex_state = 3}, + [2489] = {.lex_state = 7, .external_lex_state = 3}, + [2490] = {.lex_state = 7, .external_lex_state = 3}, + [2491] = {.lex_state = 7, .external_lex_state = 3}, + [2492] = {.lex_state = 7, .external_lex_state = 3}, + [2493] = {.lex_state = 7, .external_lex_state = 3}, [2494] = {.lex_state = 0, .external_lex_state = 3}, [2495] = {.lex_state = 0, .external_lex_state = 3}, [2496] = {.lex_state = 0, .external_lex_state = 3}, [2497] = {.lex_state = 0, .external_lex_state = 3}, [2498] = {.lex_state = 0, .external_lex_state = 3}, [2499] = {.lex_state = 0, .external_lex_state = 3}, - [2500] = {.lex_state = 10, .external_lex_state = 3}, + [2500] = {.lex_state = 7, .external_lex_state = 3}, [2501] = {.lex_state = 0, .external_lex_state = 3}, [2502] = {.lex_state = 0, .external_lex_state = 3}, [2503] = {.lex_state = 0, .external_lex_state = 3}, - [2504] = {.lex_state = 0, .external_lex_state = 3}, - [2505] = {.lex_state = 10, .external_lex_state = 3}, + [2504] = {.lex_state = 7, .external_lex_state = 3}, + [2505] = {.lex_state = 0, .external_lex_state = 3}, [2506] = {.lex_state = 0, .external_lex_state = 3}, - [2507] = {.lex_state = 0, .external_lex_state = 3}, - [2508] = {.lex_state = 10, .external_lex_state = 3}, - [2509] = {.lex_state = 0, .external_lex_state = 3}, + [2507] = {.lex_state = 10, .external_lex_state = 3}, + [2508] = {.lex_state = 0, .external_lex_state = 3}, + [2509] = {.lex_state = 10, .external_lex_state = 3}, [2510] = {.lex_state = 7, .external_lex_state = 3}, [2511] = {.lex_state = 0, .external_lex_state = 3}, - [2512] = {.lex_state = 0, .external_lex_state = 3}, + [2512] = {.lex_state = 7, .external_lex_state = 3}, [2513] = {.lex_state = 0, .external_lex_state = 3}, [2514] = {.lex_state = 10, .external_lex_state = 3}, [2515] = {.lex_state = 0, .external_lex_state = 3}, - [2516] = {.lex_state = 10, .external_lex_state = 3}, + [2516] = {.lex_state = 0, .external_lex_state = 3}, [2517] = {.lex_state = 0, .external_lex_state = 3}, [2518] = {.lex_state = 0, .external_lex_state = 3}, - [2519] = {.lex_state = 0, .external_lex_state = 3}, - [2520] = {.lex_state = 7, .external_lex_state = 3}, - [2521] = {.lex_state = 7, .external_lex_state = 3}, + [2519] = {.lex_state = 10, .external_lex_state = 3}, + [2520] = {.lex_state = 0, .external_lex_state = 3}, + [2521] = {.lex_state = 0, .external_lex_state = 3}, [2522] = {.lex_state = 0, .external_lex_state = 3}, - [2523] = {.lex_state = 7, .external_lex_state = 3}, + [2523] = {.lex_state = 10, .external_lex_state = 3}, [2524] = {.lex_state = 0, .external_lex_state = 3}, - [2525] = {.lex_state = 7, .external_lex_state = 3}, - [2526] = {.lex_state = 7, .external_lex_state = 3}, - [2527] = {.lex_state = 0, .external_lex_state = 3}, - [2528] = {.lex_state = 7, .external_lex_state = 3}, + [2525] = {.lex_state = 0, .external_lex_state = 3}, + [2526] = {.lex_state = 0, .external_lex_state = 3}, + [2527] = {.lex_state = 10, .external_lex_state = 3}, + [2528] = {.lex_state = 10, .external_lex_state = 3}, [2529] = {.lex_state = 0, .external_lex_state = 3}, - [2530] = {.lex_state = 7, .external_lex_state = 3}, - [2531] = {.lex_state = 7, .external_lex_state = 3}, - [2532] = {.lex_state = 7, .external_lex_state = 3}, + [2530] = {.lex_state = 0, .external_lex_state = 3}, + [2531] = {.lex_state = 10, .external_lex_state = 3}, + [2532] = {.lex_state = 0, .external_lex_state = 3}, [2533] = {.lex_state = 7, .external_lex_state = 3}, - [2534] = {.lex_state = 7, .external_lex_state = 3}, - [2535] = {.lex_state = 7, .external_lex_state = 3}, - [2536] = {.lex_state = 7, .external_lex_state = 3}, - [2537] = {.lex_state = 7, .external_lex_state = 3}, + [2534] = {.lex_state = 0, .external_lex_state = 3}, + [2535] = {.lex_state = 0, .external_lex_state = 3}, + [2536] = {.lex_state = 0, .external_lex_state = 3}, + [2537] = {.lex_state = 10, .external_lex_state = 3}, [2538] = {.lex_state = 0, .external_lex_state = 3}, [2539] = {.lex_state = 10, .external_lex_state = 3}, - [2540] = {.lex_state = 7, .external_lex_state = 3}, + [2540] = {.lex_state = 0, .external_lex_state = 3}, [2541] = {.lex_state = 0, .external_lex_state = 3}, [2542] = {.lex_state = 7, .external_lex_state = 3}, - [2543] = {.lex_state = 7, .external_lex_state = 3}, + [2543] = {.lex_state = 0, .external_lex_state = 3}, + [2544] = {.lex_state = 0, .external_lex_state = 3}, + [2545] = {.lex_state = 0, .external_lex_state = 3}, + [2546] = {.lex_state = 7, .external_lex_state = 3}, + [2547] = {.lex_state = 0, .external_lex_state = 3}, + [2548] = {.lex_state = 7, .external_lex_state = 3}, + [2549] = {.lex_state = 7, .external_lex_state = 3}, + [2550] = {.lex_state = 0, .external_lex_state = 3}, + [2551] = {.lex_state = 7, .external_lex_state = 3}, + [2552] = {.lex_state = 0, .external_lex_state = 3}, + [2553] = {.lex_state = 0, .external_lex_state = 3}, + [2554] = {.lex_state = 0, .external_lex_state = 3}, + [2555] = {.lex_state = 7, .external_lex_state = 3}, + [2556] = {.lex_state = 7, .external_lex_state = 3}, + [2557] = {.lex_state = 7, .external_lex_state = 3}, + [2558] = {.lex_state = 0, .external_lex_state = 3}, + [2559] = {.lex_state = 7, .external_lex_state = 3}, + [2560] = {.lex_state = 7, .external_lex_state = 3}, + [2561] = {.lex_state = 0, .external_lex_state = 3}, + [2562] = {.lex_state = 0, .external_lex_state = 3}, + [2563] = {.lex_state = 7, .external_lex_state = 3}, + [2564] = {.lex_state = 0, .external_lex_state = 3}, + [2565] = {.lex_state = 0, .external_lex_state = 3}, + [2566] = {.lex_state = 7, .external_lex_state = 3}, }; enum { @@ -14724,80 +14803,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2460), - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [sym_source_file] = STATE(2483), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -14874,234 +14953,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(183), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(108), - [anon_sym_macro_rules_BANG] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(114), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(122), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_u8] = ACTIONS(128), - [anon_sym_i8] = ACTIONS(128), - [anon_sym_u16] = ACTIONS(128), - [anon_sym_i16] = ACTIONS(128), - [anon_sym_u32] = ACTIONS(128), - [anon_sym_i32] = ACTIONS(128), - [anon_sym_u64] = ACTIONS(128), - [anon_sym_i64] = ACTIONS(128), - [anon_sym_u128] = ACTIONS(128), - [anon_sym_i128] = ACTIONS(128), - [anon_sym_isize] = ACTIONS(128), - [anon_sym_usize] = ACTIONS(128), - [anon_sym_f32] = ACTIONS(128), - [anon_sym_f64] = ACTIONS(128), - [anon_sym_bool] = ACTIONS(128), - [anon_sym_str] = ACTIONS(128), - [anon_sym_char] = ACTIONS(128), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_async] = ACTIONS(134), - [anon_sym_break] = ACTIONS(137), - [anon_sym_const] = ACTIONS(140), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_default] = ACTIONS(146), - [anon_sym_enum] = ACTIONS(149), - [anon_sym_fn] = ACTIONS(152), - [anon_sym_for] = ACTIONS(155), - [anon_sym_if] = ACTIONS(158), - [anon_sym_impl] = ACTIONS(161), - [anon_sym_let] = ACTIONS(164), - [anon_sym_loop] = ACTIONS(167), - [anon_sym_match] = ACTIONS(170), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_pub] = ACTIONS(176), - [anon_sym_return] = ACTIONS(179), - [anon_sym_static] = ACTIONS(182), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_trait] = ACTIONS(188), - [anon_sym_type] = ACTIONS(191), - [anon_sym_union] = ACTIONS(194), - [anon_sym_unsafe] = ACTIONS(197), - [anon_sym_use] = ACTIONS(200), - [anon_sym_while] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(206), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(212), - [anon_sym_COLON_COLON] = ACTIONS(215), - [anon_sym_AMP] = ACTIONS(218), - [anon_sym_DOT_DOT] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PIPE] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(227), - [anon_sym_move] = ACTIONS(230), - [sym_integer_literal] = ACTIONS(233), - [aux_sym_string_literal_token1] = ACTIONS(236), - [sym_char_literal] = ACTIONS(233), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(242), - [sym_super] = ACTIONS(245), - [sym_crate] = ACTIONS(248), - [sym_metavariable] = ACTIONS(251), - [sym_raw_string_literal] = ACTIONS(233), - [sym_float_literal] = ACTIONS(233), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(254), + [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15172,85 +15251,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_macro_definition] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_foreign_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_union_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_extern_crate_declaration] = STATE(6), - [sym_const_item] = STATE(6), - [sym_static_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [sym__statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_macro_definition] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_foreign_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_union_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_extern_crate_declaration] = STATE(5), + [sym_const_item] = STATE(5), + [sym_static_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [ts_builtin_sym_end] = ACTIONS(109), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(256), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15321,85 +15400,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [sym__statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_macro_definition] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_foreign_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_union_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_extern_crate_declaration] = STATE(5), + [sym_const_item] = STATE(5), + [sym_static_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [ts_builtin_sym_end] = ACTIONS(111), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_macro_rules_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(128), + [anon_sym_STAR] = ACTIONS(131), + [anon_sym_u8] = ACTIONS(134), + [anon_sym_i8] = ACTIONS(134), + [anon_sym_u16] = ACTIONS(134), + [anon_sym_i16] = ACTIONS(134), + [anon_sym_u32] = ACTIONS(134), + [anon_sym_i32] = ACTIONS(134), + [anon_sym_u64] = ACTIONS(134), + [anon_sym_i64] = ACTIONS(134), + [anon_sym_u128] = ACTIONS(134), + [anon_sym_i128] = ACTIONS(134), + [anon_sym_isize] = ACTIONS(134), + [anon_sym_usize] = ACTIONS(134), + [anon_sym_f32] = ACTIONS(134), + [anon_sym_f64] = ACTIONS(134), + [anon_sym_bool] = ACTIONS(134), + [anon_sym_str] = ACTIONS(134), + [anon_sym_char] = ACTIONS(134), + [anon_sym_SQUOTE] = ACTIONS(137), + [anon_sym_async] = ACTIONS(140), + [anon_sym_break] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_default] = ACTIONS(152), + [anon_sym_enum] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(164), + [anon_sym_impl] = ACTIONS(167), + [anon_sym_let] = ACTIONS(170), + [anon_sym_loop] = ACTIONS(173), + [anon_sym_match] = ACTIONS(176), + [anon_sym_mod] = ACTIONS(179), + [anon_sym_pub] = ACTIONS(182), + [anon_sym_return] = ACTIONS(185), + [anon_sym_static] = ACTIONS(188), + [anon_sym_struct] = ACTIONS(191), + [anon_sym_trait] = ACTIONS(194), + [anon_sym_type] = ACTIONS(197), + [anon_sym_union] = ACTIONS(200), + [anon_sym_unsafe] = ACTIONS(203), + [anon_sym_use] = ACTIONS(206), + [anon_sym_while] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(212), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_COLON_COLON] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(224), + [anon_sym_DOT_DOT] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_move] = ACTIONS(236), + [sym_integer_literal] = ACTIONS(239), + [aux_sym_string_literal_token1] = ACTIONS(242), + [sym_char_literal] = ACTIONS(239), + [anon_sym_true] = ACTIONS(245), + [anon_sym_false] = ACTIONS(245), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(248), + [sym_super] = ACTIONS(251), + [sym_crate] = ACTIONS(254), + [sym_metavariable] = ACTIONS(257), + [sym_raw_string_literal] = ACTIONS(239), + [sym_float_literal] = ACTIONS(239), + [sym_block_comment] = ACTIONS(3), + }, + [6] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(258), + [anon_sym_RBRACE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15469,86 +15697,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [6] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [7] = { + [sym__statement] = STATE(3), + [sym_empty_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_macro_definition] = STATE(3), + [sym_attribute_item] = STATE(3), + [sym_inner_attribute_item] = STATE(3), + [sym_mod_item] = STATE(3), + [sym_foreign_mod_item] = STATE(3), + [sym_struct_item] = STATE(3), + [sym_union_item] = STATE(3), + [sym_enum_item] = STATE(3), + [sym_extern_crate_declaration] = STATE(3), + [sym_const_item] = STATE(3), + [sym_static_item] = STATE(3), + [sym_type_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(3), + [sym_trait_item] = STATE(3), + [sym_associated_type] = STATE(3), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(260), + [anon_sym_RBRACE] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15618,86 +15846,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [8] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(264), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15767,7 +15995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [8] = { + [9] = { [sym__statement] = STATE(8), [sym_empty_statement] = STATE(8), [sym_expression_statement] = STATE(8), @@ -15785,217 +16013,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(8), [sym_function_item] = STATE(8), [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2458), + [sym_function_modifiers] = STATE(2481), [sym_impl_item] = STATE(8), [sym_trait_item] = STATE(8), [sym_associated_type] = STATE(8), [sym_let_declaration] = STATE(8), [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(120), - [sym_identifier] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(108), - [anon_sym_macro_rules_BANG] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(114), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(122), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_u8] = ACTIONS(128), - [anon_sym_i8] = ACTIONS(128), - [anon_sym_u16] = ACTIONS(128), - [anon_sym_i16] = ACTIONS(128), - [anon_sym_u32] = ACTIONS(128), - [anon_sym_i32] = ACTIONS(128), - [anon_sym_u64] = ACTIONS(128), - [anon_sym_i64] = ACTIONS(128), - [anon_sym_u128] = ACTIONS(128), - [anon_sym_i128] = ACTIONS(128), - [anon_sym_isize] = ACTIONS(128), - [anon_sym_usize] = ACTIONS(128), - [anon_sym_f32] = ACTIONS(128), - [anon_sym_f64] = ACTIONS(128), - [anon_sym_bool] = ACTIONS(128), - [anon_sym_str] = ACTIONS(128), - [anon_sym_char] = ACTIONS(128), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_async] = ACTIONS(134), - [anon_sym_break] = ACTIONS(137), - [anon_sym_const] = ACTIONS(140), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_default] = ACTIONS(146), - [anon_sym_enum] = ACTIONS(149), - [anon_sym_fn] = ACTIONS(152), - [anon_sym_for] = ACTIONS(155), - [anon_sym_if] = ACTIONS(158), - [anon_sym_impl] = ACTIONS(161), - [anon_sym_let] = ACTIONS(164), - [anon_sym_loop] = ACTIONS(167), - [anon_sym_match] = ACTIONS(170), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_pub] = ACTIONS(176), - [anon_sym_return] = ACTIONS(179), - [anon_sym_static] = ACTIONS(182), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_trait] = ACTIONS(188), - [anon_sym_type] = ACTIONS(191), - [anon_sym_union] = ACTIONS(194), - [anon_sym_unsafe] = ACTIONS(197), - [anon_sym_use] = ACTIONS(200), - [anon_sym_while] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(206), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(212), - [anon_sym_COLON_COLON] = ACTIONS(215), - [anon_sym_AMP] = ACTIONS(218), - [anon_sym_DOT_DOT] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PIPE] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(227), - [anon_sym_move] = ACTIONS(230), - [sym_integer_literal] = ACTIONS(233), - [aux_sym_string_literal_token1] = ACTIONS(236), - [sym_char_literal] = ACTIONS(233), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(242), - [sym_super] = ACTIONS(245), - [sym_crate] = ACTIONS(248), - [sym_metavariable] = ACTIONS(251), - [sym_raw_string_literal] = ACTIONS(233), - [sym_float_literal] = ACTIONS(233), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(266), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [9] = { - [sym__statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_macro_definition] = STATE(15), - [sym_attribute_item] = STATE(15), - [sym_inner_attribute_item] = STATE(15), - [sym_mod_item] = STATE(15), - [sym_foreign_mod_item] = STATE(15), - [sym_struct_item] = STATE(15), - [sym_union_item] = STATE(15), - [sym_enum_item] = STATE(15), - [sym_extern_crate_declaration] = STATE(15), - [sym_const_item] = STATE(15), - [sym_static_item] = STATE(15), - [sym_type_item] = STATE(15), - [sym_function_item] = STATE(15), - [sym_function_signature_item] = STATE(15), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(15), - [sym_trait_item] = STATE(15), - [sym_associated_type] = STATE(15), - [sym_let_declaration] = STATE(15), - [sym_use_declaration] = STATE(15), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1196), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [10] = { + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(264), + [anon_sym_RBRACE] = ACTIONS(268), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16065,235 +16293,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [10] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [11] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [11] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(268), + [anon_sym_RBRACE] = ACTIONS(270), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16364,85 +16443,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1191), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(270), + [anon_sym_RBRACE] = ACTIONS(272), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16513,85 +16592,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(272), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(274), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16662,85 +16741,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(274), + [anon_sym_RBRACE] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16811,85 +16890,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1194), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(276), + [anon_sym_RBRACE] = ACTIONS(278), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16960,201 +17039,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2458), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1499), - [sym_visibility_modifier] = STATE(1329), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(77), - [sym_scoped_identifier] = STATE(1163), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(772), + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(183), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2449), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(278), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_macro_rules_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(128), + [anon_sym_STAR] = ACTIONS(131), + [anon_sym_u8] = ACTIONS(134), + [anon_sym_i8] = ACTIONS(134), + [anon_sym_u16] = ACTIONS(134), + [anon_sym_i16] = ACTIONS(134), + [anon_sym_u32] = ACTIONS(134), + [anon_sym_i32] = ACTIONS(134), + [anon_sym_u64] = ACTIONS(134), + [anon_sym_i64] = ACTIONS(134), + [anon_sym_u128] = ACTIONS(134), + [anon_sym_i128] = ACTIONS(134), + [anon_sym_isize] = ACTIONS(134), + [anon_sym_usize] = ACTIONS(134), + [anon_sym_f32] = ACTIONS(134), + [anon_sym_f64] = ACTIONS(134), + [anon_sym_bool] = ACTIONS(134), + [anon_sym_str] = ACTIONS(134), + [anon_sym_char] = ACTIONS(134), + [anon_sym_SQUOTE] = ACTIONS(137), + [anon_sym_async] = ACTIONS(140), + [anon_sym_break] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_default] = ACTIONS(152), + [anon_sym_enum] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(164), + [anon_sym_impl] = ACTIONS(167), + [anon_sym_let] = ACTIONS(170), + [anon_sym_loop] = ACTIONS(173), + [anon_sym_match] = ACTIONS(176), + [anon_sym_mod] = ACTIONS(179), + [anon_sym_pub] = ACTIONS(182), + [anon_sym_return] = ACTIONS(185), + [anon_sym_static] = ACTIONS(188), + [anon_sym_struct] = ACTIONS(191), + [anon_sym_trait] = ACTIONS(194), + [anon_sym_type] = ACTIONS(197), + [anon_sym_union] = ACTIONS(200), + [anon_sym_unsafe] = ACTIONS(203), + [anon_sym_use] = ACTIONS(206), + [anon_sym_while] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(212), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_COLON_COLON] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(224), + [anon_sym_DOT_DOT] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_move] = ACTIONS(236), + [sym_integer_literal] = ACTIONS(239), + [aux_sym_string_literal_token1] = ACTIONS(242), + [sym_char_literal] = ACTIONS(239), + [anon_sym_true] = ACTIONS(245), + [anon_sym_false] = ACTIONS(245), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(248), + [sym_super] = ACTIONS(251), + [sym_crate] = ACTIONS(254), + [sym_metavariable] = ACTIONS(257), + [sym_raw_string_literal] = ACTIONS(239), + [sym_float_literal] = ACTIONS(239), [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1134), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -17251,52 +17330,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1069), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(310), @@ -17326,7 +17405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(314), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), @@ -17392,64 +17471,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1132), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(314), - [anon_sym_LPAREN] = ACTIONS(314), - [anon_sym_RPAREN] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(314), - [anon_sym_EQ_GT] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_RBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_EQ_GT] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17467,8 +17546,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(318), - [anon_sym_as] = ACTIONS(316), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17483,41 +17562,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17533,64 +17612,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1069), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(310), - [anon_sym_EQ_GT] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_RBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_EQ_GT] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17609,7 +17688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(312), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17624,41 +17703,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_COMMA] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17674,52 +17753,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1085), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(320), [anon_sym_LPAREN] = ACTIONS(320), @@ -17815,52 +17894,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1126), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(324), [anon_sym_LPAREN] = ACTIONS(13), @@ -17956,52 +18035,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1136), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(13), @@ -18097,52 +18176,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1085), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(320), [anon_sym_LPAREN] = ACTIONS(13), @@ -18238,52 +18317,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1195), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -18374,54 +18453,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1069), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(318), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(318), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [27] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(318), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(318), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [28] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(310), [anon_sym_LBRACK] = ACTIONS(310), [anon_sym_PLUS] = ACTIONS(312), @@ -18444,7 +18793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(314), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), @@ -18508,60 +18857,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [27] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1085), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [29] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_STAR] = ACTIONS(322), - [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18580,7 +18929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18595,40 +18944,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(320), - [anon_sym_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(320), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(322), - [anon_sym_CARET] = ACTIONS(322), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(322), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18643,55 +18992,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [28] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1085), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [30] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(326), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(326), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(326), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [31] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(320), [anon_sym_LBRACK] = ACTIONS(320), [anon_sym_PLUS] = ACTIONS(322), @@ -18778,465 +19262,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [29] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(338), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [30] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(314), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(318), - [anon_sym_as] = ACTIONS(316), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(316), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [31] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(324), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(326), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(324), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(324), - [anon_sym_PIPE_PIPE] = ACTIONS(324), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(324), - [anon_sym_BANG_EQ] = ACTIONS(324), - [anon_sym_LT_EQ] = ACTIONS(324), - [anon_sym_GT_EQ] = ACTIONS(324), - [anon_sym_LT_LT] = ACTIONS(326), - [anon_sym_GT_GT] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_PERCENT] = ACTIONS(326), - [anon_sym_PLUS_EQ] = ACTIONS(324), - [anon_sym_DASH_EQ] = ACTIONS(324), - [anon_sym_STAR_EQ] = ACTIONS(324), - [anon_sym_SLASH_EQ] = ACTIONS(324), - [anon_sym_PERCENT_EQ] = ACTIONS(324), - [anon_sym_AMP_EQ] = ACTIONS(324), - [anon_sym_PIPE_EQ] = ACTIONS(324), - [anon_sym_CARET_EQ] = ACTIONS(324), - [anon_sym_LT_LT_EQ] = ACTIONS(324), - [anon_sym_GT_GT_EQ] = ACTIONS(324), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(326), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, [32] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1069), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -19255,7 +19334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(312), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -19270,40 +19349,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19319,59 +19398,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(594), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_enum_variant_list_repeat1] = STATE(594), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -19430,59 +19509,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1185), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(374), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(374), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -19541,54 +19620,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(33), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1166), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_attribute_item] = STATE(34), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1195), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_enum_variant_list_repeat1] = STATE(33), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(34), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -19652,54 +19731,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(382), @@ -19762,54 +19841,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(384), @@ -19873,52 +19952,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [38] = { [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), @@ -19982,54 +20061,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(388), @@ -20092,54 +20171,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_attribute_item] = STATE(594), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1186), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1302), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_enum_variant_list_repeat1] = STATE(594), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20201,54 +20280,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20310,54 +20389,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_attribute_item] = STATE(594), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_enum_variant_list_repeat1] = STATE(594), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20419,54 +20498,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym_attribute_item] = STATE(594), - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_enum_variant_list_repeat1] = STATE(594), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20528,272 +20607,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_tuple_expression_repeat1] = STATE(44), - [sym_identifier] = ACTIONS(390), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(396), - [anon_sym_LBRACE] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_u8] = ACTIONS(407), - [anon_sym_i8] = ACTIONS(407), - [anon_sym_u16] = ACTIONS(407), - [anon_sym_i16] = ACTIONS(407), - [anon_sym_u32] = ACTIONS(407), - [anon_sym_i32] = ACTIONS(407), - [anon_sym_u64] = ACTIONS(407), - [anon_sym_i64] = ACTIONS(407), - [anon_sym_u128] = ACTIONS(407), - [anon_sym_i128] = ACTIONS(407), - [anon_sym_isize] = ACTIONS(407), - [anon_sym_usize] = ACTIONS(407), - [anon_sym_f32] = ACTIONS(407), - [anon_sym_f64] = ACTIONS(407), - [anon_sym_bool] = ACTIONS(407), - [anon_sym_str] = ACTIONS(407), - [anon_sym_char] = ACTIONS(407), - [anon_sym_SQUOTE] = ACTIONS(410), - [anon_sym_async] = ACTIONS(413), - [anon_sym_break] = ACTIONS(416), - [anon_sym_const] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(428), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(434), - [anon_sym_match] = ACTIONS(437), - [anon_sym_return] = ACTIONS(440), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(443), - [anon_sym_while] = ACTIONS(446), - [anon_sym_BANG] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_COLON_COLON] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_DOT_DOT] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_move] = ACTIONS(467), - [sym_integer_literal] = ACTIONS(470), - [aux_sym_string_literal_token1] = ACTIONS(473), - [sym_char_literal] = ACTIONS(470), - [anon_sym_true] = ACTIONS(476), - [anon_sym_false] = ACTIONS(476), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(479), - [sym_super] = ACTIONS(482), - [sym_crate] = ACTIONS(482), - [sym_metavariable] = ACTIONS(485), - [sym_raw_string_literal] = ACTIONS(470), - [sym_float_literal] = ACTIONS(470), - [sym_block_comment] = ACTIONS(3), - }, - [45] = { - [sym_else_clause] = STATE(123), - [ts_builtin_sym_end] = ACTIONS(488), - [sym_identifier] = ACTIONS(490), - [anon_sym_SEMI] = ACTIONS(488), - [anon_sym_macro_rules_BANG] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(488), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_u8] = ACTIONS(490), - [anon_sym_i8] = ACTIONS(490), - [anon_sym_u16] = ACTIONS(490), - [anon_sym_i16] = ACTIONS(490), - [anon_sym_u32] = ACTIONS(490), - [anon_sym_i32] = ACTIONS(490), - [anon_sym_u64] = ACTIONS(490), - [anon_sym_i64] = ACTIONS(490), - [anon_sym_u128] = ACTIONS(490), - [anon_sym_i128] = ACTIONS(490), - [anon_sym_isize] = ACTIONS(490), - [anon_sym_usize] = ACTIONS(490), - [anon_sym_f32] = ACTIONS(490), - [anon_sym_f64] = ACTIONS(490), - [anon_sym_bool] = ACTIONS(490), - [anon_sym_str] = ACTIONS(490), - [anon_sym_char] = ACTIONS(490), - [anon_sym_SQUOTE] = ACTIONS(490), - [anon_sym_as] = ACTIONS(490), - [anon_sym_async] = ACTIONS(490), - [anon_sym_break] = ACTIONS(490), - [anon_sym_const] = ACTIONS(490), - [anon_sym_continue] = ACTIONS(490), - [anon_sym_default] = ACTIONS(490), - [anon_sym_enum] = ACTIONS(490), - [anon_sym_fn] = ACTIONS(490), - [anon_sym_for] = ACTIONS(490), - [anon_sym_if] = ACTIONS(490), - [anon_sym_impl] = ACTIONS(490), - [anon_sym_let] = ACTIONS(490), - [anon_sym_loop] = ACTIONS(490), - [anon_sym_match] = ACTIONS(490), - [anon_sym_mod] = ACTIONS(490), - [anon_sym_pub] = ACTIONS(490), - [anon_sym_return] = ACTIONS(490), - [anon_sym_static] = ACTIONS(490), - [anon_sym_struct] = ACTIONS(490), - [anon_sym_trait] = ACTIONS(490), - [anon_sym_type] = ACTIONS(490), - [anon_sym_union] = ACTIONS(490), - [anon_sym_unsafe] = ACTIONS(490), - [anon_sym_use] = ACTIONS(490), - [anon_sym_while] = ACTIONS(490), - [anon_sym_POUND] = ACTIONS(488), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_extern] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(488), - [anon_sym_PIPE_PIPE] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_CARET] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_PERCENT] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_PERCENT_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_CARET_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_else] = ACTIONS(492), - [anon_sym_move] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(490), - [sym_integer_literal] = ACTIONS(488), - [aux_sym_string_literal_token1] = ACTIONS(488), - [sym_char_literal] = ACTIONS(488), - [anon_sym_true] = ACTIONS(490), - [anon_sym_false] = ACTIONS(490), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(490), - [sym_super] = ACTIONS(490), - [sym_crate] = ACTIONS(490), - [sym_metavariable] = ACTIONS(488), - [sym_raw_string_literal] = ACTIONS(488), - [sym_float_literal] = ACTIONS(488), - [sym_block_comment] = ACTIONS(3), - }, - [46] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_tuple_expression_repeat1] = STATE(44), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_tuple_expression_repeat1] = STATE(48), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(494), + [anon_sym_RPAREN] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20851,165 +20714,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [47] = { - [sym_else_clause] = STATE(140), - [ts_builtin_sym_end] = ACTIONS(496), - [sym_identifier] = ACTIONS(498), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_macro_rules_BANG] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LBRACK] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_QMARK] = ACTIONS(496), - [anon_sym_u8] = ACTIONS(498), - [anon_sym_i8] = ACTIONS(498), - [anon_sym_u16] = ACTIONS(498), - [anon_sym_i16] = ACTIONS(498), - [anon_sym_u32] = ACTIONS(498), - [anon_sym_i32] = ACTIONS(498), - [anon_sym_u64] = ACTIONS(498), - [anon_sym_i64] = ACTIONS(498), - [anon_sym_u128] = ACTIONS(498), - [anon_sym_i128] = ACTIONS(498), - [anon_sym_isize] = ACTIONS(498), - [anon_sym_usize] = ACTIONS(498), - [anon_sym_f32] = ACTIONS(498), - [anon_sym_f64] = ACTIONS(498), - [anon_sym_bool] = ACTIONS(498), - [anon_sym_str] = ACTIONS(498), - [anon_sym_char] = ACTIONS(498), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_as] = ACTIONS(498), - [anon_sym_async] = ACTIONS(498), - [anon_sym_break] = ACTIONS(498), - [anon_sym_const] = ACTIONS(498), - [anon_sym_continue] = ACTIONS(498), - [anon_sym_default] = ACTIONS(498), - [anon_sym_enum] = ACTIONS(498), - [anon_sym_fn] = ACTIONS(498), - [anon_sym_for] = ACTIONS(498), - [anon_sym_if] = ACTIONS(498), - [anon_sym_impl] = ACTIONS(498), - [anon_sym_let] = ACTIONS(498), - [anon_sym_loop] = ACTIONS(498), - [anon_sym_match] = ACTIONS(498), - [anon_sym_mod] = ACTIONS(498), - [anon_sym_pub] = ACTIONS(498), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(498), - [anon_sym_struct] = ACTIONS(498), - [anon_sym_trait] = ACTIONS(498), - [anon_sym_type] = ACTIONS(498), - [anon_sym_union] = ACTIONS(498), - [anon_sym_unsafe] = ACTIONS(498), - [anon_sym_use] = ACTIONS(498), - [anon_sym_while] = ACTIONS(498), - [anon_sym_POUND] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_EQ] = ACTIONS(498), - [anon_sym_extern] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(498), - [anon_sym_GT] = ACTIONS(498), - [anon_sym_COLON_COLON] = ACTIONS(496), - [anon_sym_AMP] = ACTIONS(498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(496), - [anon_sym_DOT_DOT] = ACTIONS(498), - [anon_sym_DOT_DOT_EQ] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE_PIPE] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(498), - [anon_sym_EQ_EQ] = ACTIONS(496), - [anon_sym_BANG_EQ] = ACTIONS(496), - [anon_sym_LT_EQ] = ACTIONS(496), - [anon_sym_GT_EQ] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(498), - [anon_sym_GT_GT] = ACTIONS(498), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_PERCENT] = ACTIONS(498), - [anon_sym_PLUS_EQ] = ACTIONS(496), - [anon_sym_DASH_EQ] = ACTIONS(496), - [anon_sym_STAR_EQ] = ACTIONS(496), - [anon_sym_SLASH_EQ] = ACTIONS(496), - [anon_sym_PERCENT_EQ] = ACTIONS(496), - [anon_sym_AMP_EQ] = ACTIONS(496), - [anon_sym_PIPE_EQ] = ACTIONS(496), - [anon_sym_CARET_EQ] = ACTIONS(496), - [anon_sym_LT_LT_EQ] = ACTIONS(496), - [anon_sym_GT_GT_EQ] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(498), - [anon_sym_else] = ACTIONS(492), - [anon_sym_move] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(498), - [sym_integer_literal] = ACTIONS(496), - [aux_sym_string_literal_token1] = ACTIONS(496), - [sym_char_literal] = ACTIONS(496), - [anon_sym_true] = ACTIONS(498), - [anon_sym_false] = ACTIONS(498), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(498), - [sym_super] = ACTIONS(498), - [sym_crate] = ACTIONS(498), - [sym_metavariable] = ACTIONS(496), - [sym_raw_string_literal] = ACTIONS(496), - [sym_float_literal] = ACTIONS(496), - [sym_block_comment] = ACTIONS(3), - }, - [48] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [45] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_tuple_expression_repeat1] = STATE(50), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_tuple_expression_repeat1] = STATE(47), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(500), + [anon_sym_RPAREN] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21067,57 +20822,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [49] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [46] = { + [sym_else_clause] = STATE(141), + [ts_builtin_sym_end] = ACTIONS(394), + [sym_identifier] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(394), + [anon_sym_macro_rules_BANG] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_RBRACE] = ACTIONS(394), + [anon_sym_LBRACK] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(396), + [anon_sym_i8] = ACTIONS(396), + [anon_sym_u16] = ACTIONS(396), + [anon_sym_i16] = ACTIONS(396), + [anon_sym_u32] = ACTIONS(396), + [anon_sym_i32] = ACTIONS(396), + [anon_sym_u64] = ACTIONS(396), + [anon_sym_i64] = ACTIONS(396), + [anon_sym_u128] = ACTIONS(396), + [anon_sym_i128] = ACTIONS(396), + [anon_sym_isize] = ACTIONS(396), + [anon_sym_usize] = ACTIONS(396), + [anon_sym_f32] = ACTIONS(396), + [anon_sym_f64] = ACTIONS(396), + [anon_sym_bool] = ACTIONS(396), + [anon_sym_str] = ACTIONS(396), + [anon_sym_char] = ACTIONS(396), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_as] = ACTIONS(396), + [anon_sym_async] = ACTIONS(396), + [anon_sym_break] = ACTIONS(396), + [anon_sym_const] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(396), + [anon_sym_enum] = ACTIONS(396), + [anon_sym_fn] = ACTIONS(396), + [anon_sym_for] = ACTIONS(396), + [anon_sym_if] = ACTIONS(396), + [anon_sym_impl] = ACTIONS(396), + [anon_sym_let] = ACTIONS(396), + [anon_sym_loop] = ACTIONS(396), + [anon_sym_match] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(396), + [anon_sym_pub] = ACTIONS(396), + [anon_sym_return] = ACTIONS(396), + [anon_sym_static] = ACTIONS(396), + [anon_sym_struct] = ACTIONS(396), + [anon_sym_trait] = ACTIONS(396), + [anon_sym_type] = ACTIONS(396), + [anon_sym_union] = ACTIONS(396), + [anon_sym_unsafe] = ACTIONS(396), + [anon_sym_use] = ACTIONS(396), + [anon_sym_while] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_extern] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_COLON_COLON] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT] = ACTIONS(396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(394), + [anon_sym_PIPE_PIPE] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(394), + [anon_sym_BANG_EQ] = ACTIONS(394), + [anon_sym_LT_EQ] = ACTIONS(394), + [anon_sym_GT_EQ] = ACTIONS(394), + [anon_sym_LT_LT] = ACTIONS(396), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_PLUS_EQ] = ACTIONS(394), + [anon_sym_DASH_EQ] = ACTIONS(394), + [anon_sym_STAR_EQ] = ACTIONS(394), + [anon_sym_SLASH_EQ] = ACTIONS(394), + [anon_sym_PERCENT_EQ] = ACTIONS(394), + [anon_sym_AMP_EQ] = ACTIONS(394), + [anon_sym_PIPE_EQ] = ACTIONS(394), + [anon_sym_CARET_EQ] = ACTIONS(394), + [anon_sym_LT_LT_EQ] = ACTIONS(394), + [anon_sym_GT_GT_EQ] = ACTIONS(394), + [anon_sym_yield] = ACTIONS(396), + [anon_sym_else] = ACTIONS(398), + [anon_sym_move] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [sym_integer_literal] = ACTIONS(394), + [aux_sym_string_literal_token1] = ACTIONS(394), + [sym_char_literal] = ACTIONS(394), + [anon_sym_true] = ACTIONS(396), + [anon_sym_false] = ACTIONS(396), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(396), + [sym_super] = ACTIONS(396), + [sym_crate] = ACTIONS(396), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(394), + [sym_float_literal] = ACTIONS(394), + [sym_block_comment] = ACTIONS(3), + }, + [47] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_tuple_expression_repeat1] = STATE(46), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_tuple_expression_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(400), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(417), + [anon_sym_i8] = ACTIONS(417), + [anon_sym_u16] = ACTIONS(417), + [anon_sym_i16] = ACTIONS(417), + [anon_sym_u32] = ACTIONS(417), + [anon_sym_i32] = ACTIONS(417), + [anon_sym_u64] = ACTIONS(417), + [anon_sym_i64] = ACTIONS(417), + [anon_sym_u128] = ACTIONS(417), + [anon_sym_i128] = ACTIONS(417), + [anon_sym_isize] = ACTIONS(417), + [anon_sym_usize] = ACTIONS(417), + [anon_sym_f32] = ACTIONS(417), + [anon_sym_f64] = ACTIONS(417), + [anon_sym_bool] = ACTIONS(417), + [anon_sym_str] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_async] = ACTIONS(423), + [anon_sym_break] = ACTIONS(426), + [anon_sym_const] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(432), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(438), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(444), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(450), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(456), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_AMP] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(471), + [anon_sym_yield] = ACTIONS(474), + [anon_sym_move] = ACTIONS(477), + [sym_integer_literal] = ACTIONS(480), + [aux_sym_string_literal_token1] = ACTIONS(483), + [sym_char_literal] = ACTIONS(480), + [anon_sym_true] = ACTIONS(486), + [anon_sym_false] = ACTIONS(486), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(492), + [sym_crate] = ACTIONS(492), + [sym_metavariable] = ACTIONS(495), + [sym_raw_string_literal] = ACTIONS(480), + [sym_float_literal] = ACTIONS(480), + [sym_block_comment] = ACTIONS(3), + }, + [48] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_tuple_expression_repeat1] = STATE(47), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_RPAREN] = ACTIONS(498), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21175,57 +21146,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [50] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [49] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [aux_sym_tuple_expression_repeat1] = STATE(44), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_tuple_expression_repeat1] = STATE(45), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_RPAREN] = ACTIONS(498), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21283,53 +21254,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [50] = { + [sym_else_clause] = STATE(115), + [ts_builtin_sym_end] = ACTIONS(500), + [sym_identifier] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(500), + [anon_sym_macro_rules_BANG] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u128] = ACTIONS(502), + [anon_sym_i128] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_str] = ACTIONS(502), + [anon_sym_char] = ACTIONS(502), + [anon_sym_SQUOTE] = ACTIONS(502), + [anon_sym_as] = ACTIONS(502), + [anon_sym_async] = ACTIONS(502), + [anon_sym_break] = ACTIONS(502), + [anon_sym_const] = ACTIONS(502), + [anon_sym_continue] = ACTIONS(502), + [anon_sym_default] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(502), + [anon_sym_fn] = ACTIONS(502), + [anon_sym_for] = ACTIONS(502), + [anon_sym_if] = ACTIONS(502), + [anon_sym_impl] = ACTIONS(502), + [anon_sym_let] = ACTIONS(502), + [anon_sym_loop] = ACTIONS(502), + [anon_sym_match] = ACTIONS(502), + [anon_sym_mod] = ACTIONS(502), + [anon_sym_pub] = ACTIONS(502), + [anon_sym_return] = ACTIONS(502), + [anon_sym_static] = ACTIONS(502), + [anon_sym_struct] = ACTIONS(502), + [anon_sym_trait] = ACTIONS(502), + [anon_sym_type] = ACTIONS(502), + [anon_sym_union] = ACTIONS(502), + [anon_sym_unsafe] = ACTIONS(502), + [anon_sym_use] = ACTIONS(502), + [anon_sym_while] = ACTIONS(502), + [anon_sym_POUND] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_extern] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_COLON_COLON] = ACTIONS(500), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(500), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(500), + [anon_sym_PIPE_PIPE] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(500), + [anon_sym_BANG_EQ] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_PERCENT] = ACTIONS(502), + [anon_sym_PLUS_EQ] = ACTIONS(500), + [anon_sym_DASH_EQ] = ACTIONS(500), + [anon_sym_STAR_EQ] = ACTIONS(500), + [anon_sym_SLASH_EQ] = ACTIONS(500), + [anon_sym_PERCENT_EQ] = ACTIONS(500), + [anon_sym_AMP_EQ] = ACTIONS(500), + [anon_sym_PIPE_EQ] = ACTIONS(500), + [anon_sym_CARET_EQ] = ACTIONS(500), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_GT_GT_EQ] = ACTIONS(500), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_else] = ACTIONS(398), + [anon_sym_move] = ACTIONS(502), + [anon_sym_DOT] = ACTIONS(502), + [sym_integer_literal] = ACTIONS(500), + [aux_sym_string_literal_token1] = ACTIONS(500), + [sym_char_literal] = ACTIONS(500), + [anon_sym_true] = ACTIONS(502), + [anon_sym_false] = ACTIONS(502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(502), + [sym_super] = ACTIONS(502), + [sym_crate] = ACTIONS(502), + [sym_metavariable] = ACTIONS(500), + [sym_raw_string_literal] = ACTIONS(500), + [sym_float_literal] = ACTIONS(500), + [sym_block_comment] = ACTIONS(3), + }, [51] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21360,6 +21439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(506), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -21369,8 +21449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [sym_mutable_specifier] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -21391,52 +21470,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21477,8 +21556,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -21498,159 +21577,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(516), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [54] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21681,7 +21653,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(520), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -21691,8 +21662,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [sym_mutable_specifier] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(516), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -21711,160 +21683,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [55] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [54] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(522), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [55] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21895,7 +21867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(524), + [anon_sym_let] = ACTIONS(520), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -21905,8 +21877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -21925,53 +21897,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [56] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22002,7 +21974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(526), + [anon_sym_let] = ACTIONS(522), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22012,8 +21984,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -22032,160 +22004,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [58] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [57] = { + [ts_builtin_sym_end] = ACTIONS(524), + [sym_identifier] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_macro_rules_BANG] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u8] = ACTIONS(526), + [anon_sym_i8] = ACTIONS(526), + [anon_sym_u16] = ACTIONS(526), + [anon_sym_i16] = ACTIONS(526), + [anon_sym_u32] = ACTIONS(526), + [anon_sym_i32] = ACTIONS(526), + [anon_sym_u64] = ACTIONS(526), + [anon_sym_i64] = ACTIONS(526), + [anon_sym_u128] = ACTIONS(526), + [anon_sym_i128] = ACTIONS(526), + [anon_sym_isize] = ACTIONS(526), + [anon_sym_usize] = ACTIONS(526), + [anon_sym_f32] = ACTIONS(526), + [anon_sym_f64] = ACTIONS(526), + [anon_sym_bool] = ACTIONS(526), + [anon_sym_str] = ACTIONS(526), + [anon_sym_char] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_as] = ACTIONS(526), + [anon_sym_async] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_const] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_default] = ACTIONS(526), + [anon_sym_enum] = ACTIONS(526), + [anon_sym_fn] = ACTIONS(526), + [anon_sym_for] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [anon_sym_impl] = ACTIONS(526), + [anon_sym_let] = ACTIONS(526), + [anon_sym_loop] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_mod] = ACTIONS(526), + [anon_sym_pub] = ACTIONS(526), + [anon_sym_return] = ACTIONS(526), + [anon_sym_static] = ACTIONS(526), + [anon_sym_struct] = ACTIONS(526), + [anon_sym_trait] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_union] = ACTIONS(526), + [anon_sym_unsafe] = ACTIONS(526), + [anon_sym_use] = ACTIONS(526), + [anon_sym_while] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_extern] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(524), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_AMP_AMP] = ACTIONS(524), + [anon_sym_PIPE_PIPE] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_EQ_EQ] = ACTIONS(524), + [anon_sym_BANG_EQ] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(526), + [anon_sym_GT_GT] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_PLUS_EQ] = ACTIONS(524), + [anon_sym_DASH_EQ] = ACTIONS(524), + [anon_sym_STAR_EQ] = ACTIONS(524), + [anon_sym_SLASH_EQ] = ACTIONS(524), + [anon_sym_PERCENT_EQ] = ACTIONS(524), + [anon_sym_AMP_EQ] = ACTIONS(524), + [anon_sym_PIPE_EQ] = ACTIONS(524), + [anon_sym_CARET_EQ] = ACTIONS(524), + [anon_sym_LT_LT_EQ] = ACTIONS(524), + [anon_sym_GT_GT_EQ] = ACTIONS(524), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_else] = ACTIONS(526), + [anon_sym_move] = ACTIONS(526), + [anon_sym_DOT] = ACTIONS(526), + [sym_integer_literal] = ACTIONS(524), + [aux_sym_string_literal_token1] = ACTIONS(524), + [sym_char_literal] = ACTIONS(524), + [anon_sym_true] = ACTIONS(526), + [anon_sym_false] = ACTIONS(526), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_crate] = ACTIONS(526), + [sym_metavariable] = ACTIONS(524), + [sym_raw_string_literal] = ACTIONS(524), + [sym_float_literal] = ACTIONS(524), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [58] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22216,6 +22188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(528), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22223,12 +22196,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(528), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22246,160 +22218,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(530), - [sym_identifier] = ACTIONS(532), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_macro_rules_BANG] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(530), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(530), - [anon_sym_u8] = ACTIONS(532), - [anon_sym_i8] = ACTIONS(532), - [anon_sym_u16] = ACTIONS(532), - [anon_sym_i16] = ACTIONS(532), - [anon_sym_u32] = ACTIONS(532), - [anon_sym_i32] = ACTIONS(532), - [anon_sym_u64] = ACTIONS(532), - [anon_sym_i64] = ACTIONS(532), - [anon_sym_u128] = ACTIONS(532), - [anon_sym_i128] = ACTIONS(532), - [anon_sym_isize] = ACTIONS(532), - [anon_sym_usize] = ACTIONS(532), - [anon_sym_f32] = ACTIONS(532), - [anon_sym_f64] = ACTIONS(532), - [anon_sym_bool] = ACTIONS(532), - [anon_sym_str] = ACTIONS(532), - [anon_sym_char] = ACTIONS(532), - [anon_sym_SQUOTE] = ACTIONS(532), - [anon_sym_as] = ACTIONS(532), - [anon_sym_async] = ACTIONS(532), - [anon_sym_break] = ACTIONS(532), - [anon_sym_const] = ACTIONS(532), - [anon_sym_continue] = ACTIONS(532), - [anon_sym_default] = ACTIONS(532), - [anon_sym_enum] = ACTIONS(532), - [anon_sym_fn] = ACTIONS(532), - [anon_sym_for] = ACTIONS(532), - [anon_sym_if] = ACTIONS(532), - [anon_sym_impl] = ACTIONS(532), - [anon_sym_let] = ACTIONS(532), - [anon_sym_loop] = ACTIONS(532), - [anon_sym_match] = ACTIONS(532), - [anon_sym_mod] = ACTIONS(532), - [anon_sym_pub] = ACTIONS(532), - [anon_sym_return] = ACTIONS(532), - [anon_sym_static] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(532), - [anon_sym_trait] = ACTIONS(532), - [anon_sym_type] = ACTIONS(532), - [anon_sym_union] = ACTIONS(532), - [anon_sym_unsafe] = ACTIONS(532), - [anon_sym_use] = ACTIONS(532), - [anon_sym_while] = ACTIONS(532), - [anon_sym_POUND] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_extern] = ACTIONS(532), - [anon_sym_LT] = ACTIONS(532), - [anon_sym_GT] = ACTIONS(532), - [anon_sym_COLON_COLON] = ACTIONS(530), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(530), - [anon_sym_DOT_DOT] = ACTIONS(532), - [anon_sym_DOT_DOT_EQ] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_CARET] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ] = ACTIONS(530), - [anon_sym_LT_EQ] = ACTIONS(530), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(532), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_SLASH] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(532), - [anon_sym_PLUS_EQ] = ACTIONS(530), - [anon_sym_DASH_EQ] = ACTIONS(530), - [anon_sym_STAR_EQ] = ACTIONS(530), - [anon_sym_SLASH_EQ] = ACTIONS(530), - [anon_sym_PERCENT_EQ] = ACTIONS(530), - [anon_sym_AMP_EQ] = ACTIONS(530), - [anon_sym_PIPE_EQ] = ACTIONS(530), - [anon_sym_CARET_EQ] = ACTIONS(530), - [anon_sym_LT_LT_EQ] = ACTIONS(530), - [anon_sym_GT_GT_EQ] = ACTIONS(530), - [anon_sym_yield] = ACTIONS(532), - [anon_sym_else] = ACTIONS(532), - [anon_sym_move] = ACTIONS(532), - [anon_sym_DOT] = ACTIONS(532), - [sym_integer_literal] = ACTIONS(530), - [aux_sym_string_literal_token1] = ACTIONS(530), - [sym_char_literal] = ACTIONS(530), - [anon_sym_true] = ACTIONS(532), - [anon_sym_false] = ACTIONS(532), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(532), - [sym_super] = ACTIONS(532), - [sym_crate] = ACTIONS(532), - [sym_metavariable] = ACTIONS(530), - [sym_raw_string_literal] = ACTIONS(530), - [sym_float_literal] = ACTIONS(530), - [sym_block_comment] = ACTIONS(3), - }, - [61] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [59] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22430,7 +22295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(534), + [anon_sym_let] = ACTIONS(530), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22440,8 +22305,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -22460,53 +22325,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1203), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [60] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22537,7 +22402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(536), + [anon_sym_let] = ACTIONS(532), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22547,8 +22412,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -22567,267 +22432,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [63] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1139), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_macro_rules_BANG] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_QMARK] = ACTIONS(540), - [anon_sym_u8] = ACTIONS(542), - [anon_sym_i8] = ACTIONS(542), - [anon_sym_u16] = ACTIONS(542), - [anon_sym_i16] = ACTIONS(542), - [anon_sym_u32] = ACTIONS(542), - [anon_sym_i32] = ACTIONS(542), - [anon_sym_u64] = ACTIONS(542), - [anon_sym_i64] = ACTIONS(542), - [anon_sym_u128] = ACTIONS(542), - [anon_sym_i128] = ACTIONS(542), - [anon_sym_isize] = ACTIONS(542), - [anon_sym_usize] = ACTIONS(542), - [anon_sym_f32] = ACTIONS(542), - [anon_sym_f64] = ACTIONS(542), - [anon_sym_bool] = ACTIONS(542), - [anon_sym_str] = ACTIONS(542), - [anon_sym_char] = ACTIONS(542), - [anon_sym_SQUOTE] = ACTIONS(542), - [anon_sym_as] = ACTIONS(542), - [anon_sym_async] = ACTIONS(542), - [anon_sym_break] = ACTIONS(542), - [anon_sym_const] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(542), - [anon_sym_default] = ACTIONS(542), - [anon_sym_enum] = ACTIONS(542), - [anon_sym_fn] = ACTIONS(542), - [anon_sym_for] = ACTIONS(542), - [anon_sym_if] = ACTIONS(542), - [anon_sym_impl] = ACTIONS(542), - [anon_sym_let] = ACTIONS(542), - [anon_sym_loop] = ACTIONS(542), - [anon_sym_match] = ACTIONS(542), - [anon_sym_mod] = ACTIONS(542), - [anon_sym_pub] = ACTIONS(542), - [anon_sym_return] = ACTIONS(542), - [anon_sym_static] = ACTIONS(542), - [anon_sym_struct] = ACTIONS(542), - [anon_sym_trait] = ACTIONS(542), - [anon_sym_type] = ACTIONS(542), - [anon_sym_union] = ACTIONS(542), - [anon_sym_unsafe] = ACTIONS(542), - [anon_sym_use] = ACTIONS(542), - [anon_sym_while] = ACTIONS(542), - [anon_sym_POUND] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(542), - [anon_sym_extern] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_COLON_COLON] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(540), - [anon_sym_DOT_DOT] = ACTIONS(542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(540), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(540), - [anon_sym_BANG_EQ] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(540), - [anon_sym_GT_EQ] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_PLUS_EQ] = ACTIONS(540), - [anon_sym_DASH_EQ] = ACTIONS(540), - [anon_sym_STAR_EQ] = ACTIONS(540), - [anon_sym_SLASH_EQ] = ACTIONS(540), - [anon_sym_PERCENT_EQ] = ACTIONS(540), - [anon_sym_AMP_EQ] = ACTIONS(540), - [anon_sym_PIPE_EQ] = ACTIONS(540), - [anon_sym_CARET_EQ] = ACTIONS(540), - [anon_sym_LT_LT_EQ] = ACTIONS(540), - [anon_sym_GT_GT_EQ] = ACTIONS(540), - [anon_sym_yield] = ACTIONS(542), - [anon_sym_else] = ACTIONS(542), - [anon_sym_move] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(542), - [sym_integer_literal] = ACTIONS(540), - [aux_sym_string_literal_token1] = ACTIONS(540), - [sym_char_literal] = ACTIONS(540), - [anon_sym_true] = ACTIONS(542), - [anon_sym_false] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(542), - [sym_super] = ACTIONS(542), - [sym_crate] = ACTIONS(542), - [sym_metavariable] = ACTIONS(540), - [sym_raw_string_literal] = ACTIONS(540), - [sym_float_literal] = ACTIONS(540), - [sym_block_comment] = ACTIONS(3), - }, - [65] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [61] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22858,7 +22509,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(544), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22866,11 +22516,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH_GT] = ACTIONS(534), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22888,53 +22539,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [66] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [62] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22965,6 +22616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(536), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22972,12 +22624,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(538), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22995,58 +22646,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [67] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [63] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23080,10 +22730,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(538), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [64] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1156), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [sym_mutable_specifier] = ACTIONS(542), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -23102,53 +22860,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [68] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [65] = { + [ts_builtin_sym_end] = ACTIONS(544), + [sym_identifier] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(544), + [anon_sym_macro_rules_BANG] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_str] = ACTIONS(546), + [anon_sym_char] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_as] = ACTIONS(546), + [anon_sym_async] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(546), + [anon_sym_fn] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_impl] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_mod] = ACTIONS(546), + [anon_sym_pub] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_static] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_trait] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_union] = ACTIONS(546), + [anon_sym_unsafe] = ACTIONS(546), + [anon_sym_use] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(546), + [anon_sym_EQ_EQ] = ACTIONS(544), + [anon_sym_BANG_EQ] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(544), + [anon_sym_LT_LT] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_PLUS_EQ] = ACTIONS(544), + [anon_sym_DASH_EQ] = ACTIONS(544), + [anon_sym_STAR_EQ] = ACTIONS(544), + [anon_sym_SLASH_EQ] = ACTIONS(544), + [anon_sym_PERCENT_EQ] = ACTIONS(544), + [anon_sym_AMP_EQ] = ACTIONS(544), + [anon_sym_PIPE_EQ] = ACTIONS(544), + [anon_sym_CARET_EQ] = ACTIONS(544), + [anon_sym_LT_LT_EQ] = ACTIONS(544), + [anon_sym_GT_GT_EQ] = ACTIONS(544), + [anon_sym_yield] = ACTIONS(546), + [anon_sym_else] = ACTIONS(546), + [anon_sym_move] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [sym_integer_literal] = ACTIONS(544), + [aux_sym_string_literal_token1] = ACTIONS(544), + [sym_char_literal] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(546), + [sym_super] = ACTIONS(546), + [sym_crate] = ACTIONS(546), + [sym_metavariable] = ACTIONS(544), + [sym_raw_string_literal] = ACTIONS(544), + [sym_float_literal] = ACTIONS(544), + [sym_block_comment] = ACTIONS(3), + }, + [66] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23189,8 +23054,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -23209,58 +23074,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(550), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_macro_rules_BANG] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(550), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [anon_sym_POUND] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_EQ] = ACTIONS(552), + [anon_sym_extern] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_AMP_AMP] = ACTIONS(550), + [anon_sym_PIPE_PIPE] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(552), + [anon_sym_CARET] = ACTIONS(552), + [anon_sym_EQ_EQ] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(552), + [anon_sym_SLASH] = ACTIONS(552), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_PLUS_EQ] = ACTIONS(550), + [anon_sym_DASH_EQ] = ACTIONS(550), + [anon_sym_STAR_EQ] = ACTIONS(550), + [anon_sym_SLASH_EQ] = ACTIONS(550), + [anon_sym_PERCENT_EQ] = ACTIONS(550), + [anon_sym_AMP_EQ] = ACTIONS(550), + [anon_sym_PIPE_EQ] = ACTIONS(550), + [anon_sym_CARET_EQ] = ACTIONS(550), + [anon_sym_LT_LT_EQ] = ACTIONS(550), + [anon_sym_GT_GT_EQ] = ACTIONS(550), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_else] = ACTIONS(552), + [anon_sym_move] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(550), + [aux_sym_string_literal_token1] = ACTIONS(550), + [sym_char_literal] = ACTIONS(550), + [anon_sym_true] = ACTIONS(552), + [anon_sym_false] = ACTIONS(552), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(550), + [sym_raw_string_literal] = ACTIONS(550), + [sym_float_literal] = ACTIONS(550), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH_GT] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [69] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(550), + [anon_sym_RBRACK] = ACTIONS(554), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23317,57 +23396,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [70] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(552), + [anon_sym_RBRACK] = ACTIONS(556), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23424,159 +23503,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [71] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_as] = ACTIONS(556), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(556), - [anon_sym_else] = ACTIONS(556), - [anon_sym_move] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), - [sym_block_comment] = ACTIONS(3), - }, - [72] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1152), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23614,11 +23586,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(534), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -23636,7 +23609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [73] = { + [72] = { [ts_builtin_sym_end] = ACTIONS(558), [sym_identifier] = ACTIONS(560), [anon_sym_SEMI] = ACTIONS(558), @@ -23645,9 +23618,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(558), [anon_sym_RBRACE] = ACTIONS(558), [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(564), [anon_sym_u8] = ACTIONS(560), [anon_sym_i8] = ACTIONS(560), [anon_sym_u16] = ACTIONS(560), @@ -23666,7 +23639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(560), [anon_sym_char] = ACTIONS(560), [anon_sym_SQUOTE] = ACTIONS(560), - [anon_sym_as] = ACTIONS(560), + [anon_sym_as] = ACTIONS(562), [anon_sym_async] = ACTIONS(560), [anon_sym_break] = ACTIONS(560), [anon_sym_const] = ACTIONS(560), @@ -23693,41 +23666,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(560), [anon_sym_POUND] = ACTIONS(558), [anon_sym_BANG] = ACTIONS(560), - [anon_sym_EQ] = ACTIONS(560), + [anon_sym_EQ] = ACTIONS(562), [anon_sym_extern] = ACTIONS(560), [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(562), [anon_sym_COLON_COLON] = ACTIONS(558), [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_BANG_EQ] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(558), - [anon_sym_DASH_EQ] = ACTIONS(558), - [anon_sym_STAR_EQ] = ACTIONS(558), - [anon_sym_SLASH_EQ] = ACTIONS(558), - [anon_sym_PERCENT_EQ] = ACTIONS(558), - [anon_sym_AMP_EQ] = ACTIONS(558), - [anon_sym_PIPE_EQ] = ACTIONS(558), - [anon_sym_CARET_EQ] = ACTIONS(558), - [anon_sym_LT_LT_EQ] = ACTIONS(558), - [anon_sym_GT_GT_EQ] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), [anon_sym_yield] = ACTIONS(560), [anon_sym_move] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(562), [sym_integer_literal] = ACTIONS(558), [aux_sym_string_literal_token1] = ACTIONS(558), [sym_char_literal] = ACTIONS(558), @@ -23742,159 +23715,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(558), [sym_block_comment] = ACTIONS(3), }, - [74] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [75] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [73] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1308), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23954,477 +23821,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [76] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [77] = { - [ts_builtin_sym_end] = ACTIONS(562), - [sym_identifier] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_macro_rules_BANG] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(564), - [anon_sym_i8] = ACTIONS(564), - [anon_sym_u16] = ACTIONS(564), - [anon_sym_i16] = ACTIONS(564), - [anon_sym_u32] = ACTIONS(564), - [anon_sym_i32] = ACTIONS(564), - [anon_sym_u64] = ACTIONS(564), - [anon_sym_i64] = ACTIONS(564), - [anon_sym_u128] = ACTIONS(564), - [anon_sym_i128] = ACTIONS(564), - [anon_sym_isize] = ACTIONS(564), - [anon_sym_usize] = ACTIONS(564), - [anon_sym_f32] = ACTIONS(564), - [anon_sym_f64] = ACTIONS(564), - [anon_sym_bool] = ACTIONS(564), - [anon_sym_str] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_const] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_enum] = ACTIONS(564), - [anon_sym_fn] = ACTIONS(564), - [anon_sym_for] = ACTIONS(564), - [anon_sym_if] = ACTIONS(564), - [anon_sym_impl] = ACTIONS(564), - [anon_sym_let] = ACTIONS(564), - [anon_sym_loop] = ACTIONS(564), - [anon_sym_match] = ACTIONS(564), - [anon_sym_mod] = ACTIONS(564), - [anon_sym_pub] = ACTIONS(564), - [anon_sym_return] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_struct] = ACTIONS(564), - [anon_sym_trait] = ACTIONS(564), - [anon_sym_type] = ACTIONS(564), - [anon_sym_union] = ACTIONS(564), - [anon_sym_unsafe] = ACTIONS(564), - [anon_sym_use] = ACTIONS(564), - [anon_sym_while] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_move] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(564), - [sym_super] = ACTIONS(564), - [sym_crate] = ACTIONS(564), - [sym_metavariable] = ACTIONS(562), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), - [sym_block_comment] = ACTIONS(3), - }, - [78] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [79] = { - [ts_builtin_sym_end] = ACTIONS(570), - [sym_identifier] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_macro_rules_BANG] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(572), - [anon_sym_i8] = ACTIONS(572), - [anon_sym_u16] = ACTIONS(572), - [anon_sym_i16] = ACTIONS(572), - [anon_sym_u32] = ACTIONS(572), - [anon_sym_i32] = ACTIONS(572), - [anon_sym_u64] = ACTIONS(572), - [anon_sym_i64] = ACTIONS(572), - [anon_sym_u128] = ACTIONS(572), - [anon_sym_i128] = ACTIONS(572), - [anon_sym_isize] = ACTIONS(572), - [anon_sym_usize] = ACTIONS(572), - [anon_sym_f32] = ACTIONS(572), - [anon_sym_f64] = ACTIONS(572), - [anon_sym_bool] = ACTIONS(572), - [anon_sym_str] = ACTIONS(572), - [anon_sym_char] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_default] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_if] = ACTIONS(572), - [anon_sym_impl] = ACTIONS(572), - [anon_sym_let] = ACTIONS(572), - [anon_sym_loop] = ACTIONS(572), - [anon_sym_match] = ACTIONS(572), - [anon_sym_mod] = ACTIONS(572), - [anon_sym_pub] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_static] = ACTIONS(572), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_trait] = ACTIONS(572), - [anon_sym_type] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [anon_sym_unsafe] = ACTIONS(572), - [anon_sym_use] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_yield] = ACTIONS(572), - [anon_sym_move] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(570), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(570), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(572), - [sym_super] = ACTIONS(572), - [sym_crate] = ACTIONS(572), - [sym_metavariable] = ACTIONS(570), - [sym_raw_string_literal] = ACTIONS(570), - [sym_float_literal] = ACTIONS(570), - [sym_block_comment] = ACTIONS(3), - }, - [80] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [74] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24464,8 +23907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -24484,159 +23927,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [ts_builtin_sym_end] = ACTIONS(574), - [sym_identifier] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_macro_rules_BANG] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_async] = ACTIONS(576), - [anon_sym_break] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_enum] = ACTIONS(576), - [anon_sym_fn] = ACTIONS(576), - [anon_sym_for] = ACTIONS(576), - [anon_sym_if] = ACTIONS(576), - [anon_sym_impl] = ACTIONS(576), - [anon_sym_let] = ACTIONS(576), - [anon_sym_loop] = ACTIONS(576), - [anon_sym_match] = ACTIONS(576), - [anon_sym_mod] = ACTIONS(576), - [anon_sym_pub] = ACTIONS(576), - [anon_sym_return] = ACTIONS(576), - [anon_sym_static] = ACTIONS(576), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_trait] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_union] = ACTIONS(576), - [anon_sym_unsafe] = ACTIONS(576), - [anon_sym_use] = ACTIONS(576), - [anon_sym_while] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(576), - [anon_sym_extern] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), - [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(574), - [anon_sym_LT_LT] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [anon_sym_DASH_EQ] = ACTIONS(574), - [anon_sym_STAR_EQ] = ACTIONS(574), - [anon_sym_SLASH_EQ] = ACTIONS(574), - [anon_sym_PERCENT_EQ] = ACTIONS(574), - [anon_sym_AMP_EQ] = ACTIONS(574), - [anon_sym_PIPE_EQ] = ACTIONS(574), - [anon_sym_CARET_EQ] = ACTIONS(574), - [anon_sym_LT_LT_EQ] = ACTIONS(574), - [anon_sym_GT_GT_EQ] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(576), - [anon_sym_move] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_metavariable] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [75] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1314), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24696,53 +24033,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [76] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24782,8 +24119,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -24802,53 +24139,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1131), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [77] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24889,7 +24226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -24908,159 +24245,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_macro_rules_BANG] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_async] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_fn] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_if] = ACTIONS(580), - [anon_sym_impl] = ACTIONS(580), - [anon_sym_let] = ACTIONS(580), - [anon_sym_loop] = ACTIONS(580), - [anon_sym_match] = ACTIONS(580), - [anon_sym_mod] = ACTIONS(580), - [anon_sym_pub] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_struct] = ACTIONS(580), - [anon_sym_trait] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_unsafe] = ACTIONS(580), - [anon_sym_use] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_yield] = ACTIONS(580), - [anon_sym_move] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), - [sym_block_comment] = ACTIONS(3), - }, - [86] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [78] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1311), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25120,265 +24351,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), + [79] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), + [80] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [81] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25418,8 +24649,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -25438,159 +24669,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), + [82] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [83] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25650,265 +24881,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [ts_builtin_sym_end] = ACTIONS(582), - [sym_identifier] = ACTIONS(584), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_macro_rules_BANG] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_SQUOTE] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_async] = ACTIONS(584), - [anon_sym_break] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(584), - [anon_sym_fn] = ACTIONS(584), - [anon_sym_for] = ACTIONS(584), - [anon_sym_if] = ACTIONS(584), - [anon_sym_impl] = ACTIONS(584), - [anon_sym_let] = ACTIONS(584), - [anon_sym_loop] = ACTIONS(584), - [anon_sym_match] = ACTIONS(584), - [anon_sym_mod] = ACTIONS(584), - [anon_sym_pub] = ACTIONS(584), - [anon_sym_return] = ACTIONS(584), - [anon_sym_static] = ACTIONS(584), - [anon_sym_struct] = ACTIONS(584), - [anon_sym_trait] = ACTIONS(584), - [anon_sym_type] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_unsafe] = ACTIONS(584), - [anon_sym_use] = ACTIONS(584), - [anon_sym_while] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_extern] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(584), - [anon_sym_move] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), + [84] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), + [85] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [86] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1305), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25968,265 +25199,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [ts_builtin_sym_end] = ACTIONS(586), - [sym_identifier] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_macro_rules_BANG] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_QMARK] = ACTIONS(586), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_as] = ACTIONS(588), - [anon_sym_async] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_fn] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_impl] = ACTIONS(588), - [anon_sym_let] = ACTIONS(588), - [anon_sym_loop] = ACTIONS(588), - [anon_sym_match] = ACTIONS(588), - [anon_sym_mod] = ACTIONS(588), - [anon_sym_pub] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_struct] = ACTIONS(588), - [anon_sym_trait] = ACTIONS(588), - [anon_sym_type] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_unsafe] = ACTIONS(588), - [anon_sym_use] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(588), - [anon_sym_extern] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT_EQ] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_EQ_EQ] = ACTIONS(586), - [anon_sym_BANG_EQ] = ACTIONS(586), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_PLUS_EQ] = ACTIONS(586), - [anon_sym_DASH_EQ] = ACTIONS(586), - [anon_sym_STAR_EQ] = ACTIONS(586), - [anon_sym_SLASH_EQ] = ACTIONS(586), - [anon_sym_PERCENT_EQ] = ACTIONS(586), - [anon_sym_AMP_EQ] = ACTIONS(586), - [anon_sym_PIPE_EQ] = ACTIONS(586), - [anon_sym_CARET_EQ] = ACTIONS(586), - [anon_sym_LT_LT_EQ] = ACTIONS(586), - [anon_sym_GT_GT_EQ] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_move] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), - [sym_integer_literal] = ACTIONS(586), - [aux_sym_string_literal_token1] = ACTIONS(586), - [sym_char_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(588), - [anon_sym_false] = ACTIONS(588), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(586), - [sym_raw_string_literal] = ACTIONS(586), - [sym_float_literal] = ACTIONS(586), - [sym_block_comment] = ACTIONS(3), - }, - [96] = { - [ts_builtin_sym_end] = ACTIONS(590), - [sym_identifier] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(590), - [anon_sym_macro_rules_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_u8] = ACTIONS(592), - [anon_sym_i8] = ACTIONS(592), - [anon_sym_u16] = ACTIONS(592), - [anon_sym_i16] = ACTIONS(592), - [anon_sym_u32] = ACTIONS(592), - [anon_sym_i32] = ACTIONS(592), - [anon_sym_u64] = ACTIONS(592), - [anon_sym_i64] = ACTIONS(592), - [anon_sym_u128] = ACTIONS(592), - [anon_sym_i128] = ACTIONS(592), - [anon_sym_isize] = ACTIONS(592), - [anon_sym_usize] = ACTIONS(592), - [anon_sym_f32] = ACTIONS(592), - [anon_sym_f64] = ACTIONS(592), - [anon_sym_bool] = ACTIONS(592), - [anon_sym_str] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_as] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(592), - [anon_sym_fn] = ACTIONS(592), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(592), - [anon_sym_impl] = ACTIONS(592), - [anon_sym_let] = ACTIONS(592), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_mod] = ACTIONS(592), - [anon_sym_pub] = ACTIONS(592), - [anon_sym_return] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_struct] = ACTIONS(592), - [anon_sym_trait] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), - [anon_sym_union] = ACTIONS(592), - [anon_sym_unsafe] = ACTIONS(592), - [anon_sym_use] = ACTIONS(592), - [anon_sym_while] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_EQ_EQ] = ACTIONS(590), - [anon_sym_BANG_EQ] = ACTIONS(590), - [anon_sym_LT_EQ] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_STAR_EQ] = ACTIONS(590), - [anon_sym_SLASH_EQ] = ACTIONS(590), - [anon_sym_PERCENT_EQ] = ACTIONS(590), - [anon_sym_AMP_EQ] = ACTIONS(590), - [anon_sym_PIPE_EQ] = ACTIONS(590), - [anon_sym_CARET_EQ] = ACTIONS(590), - [anon_sym_LT_LT_EQ] = ACTIONS(590), - [anon_sym_GT_GT_EQ] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_move] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(590), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_crate] = ACTIONS(592), - [sym_metavariable] = ACTIONS(590), - [sym_raw_string_literal] = ACTIONS(590), - [sym_float_literal] = ACTIONS(590), - [sym_block_comment] = ACTIONS(3), - }, - [97] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [87] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26266,8 +25285,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -26286,53 +25305,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [88] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26373,7 +25392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26392,159 +25411,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [ts_builtin_sym_end] = ACTIONS(594), - [sym_identifier] = ACTIONS(596), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_macro_rules_BANG] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_u8] = ACTIONS(596), - [anon_sym_i8] = ACTIONS(596), - [anon_sym_u16] = ACTIONS(596), - [anon_sym_i16] = ACTIONS(596), - [anon_sym_u32] = ACTIONS(596), - [anon_sym_i32] = ACTIONS(596), - [anon_sym_u64] = ACTIONS(596), - [anon_sym_i64] = ACTIONS(596), - [anon_sym_u128] = ACTIONS(596), - [anon_sym_i128] = ACTIONS(596), - [anon_sym_isize] = ACTIONS(596), - [anon_sym_usize] = ACTIONS(596), - [anon_sym_f32] = ACTIONS(596), - [anon_sym_f64] = ACTIONS(596), - [anon_sym_bool] = ACTIONS(596), - [anon_sym_str] = ACTIONS(596), - [anon_sym_char] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(596), - [anon_sym_as] = ACTIONS(596), - [anon_sym_async] = ACTIONS(596), - [anon_sym_break] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(596), - [anon_sym_fn] = ACTIONS(596), - [anon_sym_for] = ACTIONS(596), - [anon_sym_if] = ACTIONS(596), - [anon_sym_impl] = ACTIONS(596), - [anon_sym_let] = ACTIONS(596), - [anon_sym_loop] = ACTIONS(596), - [anon_sym_match] = ACTIONS(596), - [anon_sym_mod] = ACTIONS(596), - [anon_sym_pub] = ACTIONS(596), - [anon_sym_return] = ACTIONS(596), - [anon_sym_static] = ACTIONS(596), - [anon_sym_struct] = ACTIONS(596), - [anon_sym_trait] = ACTIONS(596), - [anon_sym_type] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_unsafe] = ACTIONS(596), - [anon_sym_use] = ACTIONS(596), - [anon_sym_while] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(596), - [anon_sym_extern] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(596), - [anon_sym_COLON_COLON] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(594), - [anon_sym_PIPE] = ACTIONS(596), - [anon_sym_CARET] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_LT_LT] = ACTIONS(596), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(596), - [anon_sym_PERCENT] = ACTIONS(596), - [anon_sym_PLUS_EQ] = ACTIONS(594), - [anon_sym_DASH_EQ] = ACTIONS(594), - [anon_sym_STAR_EQ] = ACTIONS(594), - [anon_sym_SLASH_EQ] = ACTIONS(594), - [anon_sym_PERCENT_EQ] = ACTIONS(594), - [anon_sym_AMP_EQ] = ACTIONS(594), - [anon_sym_PIPE_EQ] = ACTIONS(594), - [anon_sym_CARET_EQ] = ACTIONS(594), - [anon_sym_LT_LT_EQ] = ACTIONS(594), - [anon_sym_GT_GT_EQ] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_move] = ACTIONS(596), - [anon_sym_DOT] = ACTIONS(596), - [sym_integer_literal] = ACTIONS(594), - [aux_sym_string_literal_token1] = ACTIONS(594), - [sym_char_literal] = ACTIONS(594), - [anon_sym_true] = ACTIONS(596), - [anon_sym_false] = ACTIONS(596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(596), - [sym_super] = ACTIONS(596), - [sym_crate] = ACTIONS(596), - [sym_metavariable] = ACTIONS(594), - [sym_raw_string_literal] = ACTIONS(594), - [sym_float_literal] = ACTIONS(594), - [sym_block_comment] = ACTIONS(3), - }, - [100] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [89] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1304), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26585,7 +25498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26604,53 +25517,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [90] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26691,7 +25604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26710,477 +25623,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [ts_builtin_sym_end] = ACTIONS(598), - [sym_identifier] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_macro_rules_BANG] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_u8] = ACTIONS(600), - [anon_sym_i8] = ACTIONS(600), - [anon_sym_u16] = ACTIONS(600), - [anon_sym_i16] = ACTIONS(600), - [anon_sym_u32] = ACTIONS(600), - [anon_sym_i32] = ACTIONS(600), - [anon_sym_u64] = ACTIONS(600), - [anon_sym_i64] = ACTIONS(600), - [anon_sym_u128] = ACTIONS(600), - [anon_sym_i128] = ACTIONS(600), - [anon_sym_isize] = ACTIONS(600), - [anon_sym_usize] = ACTIONS(600), - [anon_sym_f32] = ACTIONS(600), - [anon_sym_f64] = ACTIONS(600), - [anon_sym_bool] = ACTIONS(600), - [anon_sym_str] = ACTIONS(600), - [anon_sym_char] = ACTIONS(600), - [anon_sym_SQUOTE] = ACTIONS(600), - [anon_sym_as] = ACTIONS(600), - [anon_sym_async] = ACTIONS(600), - [anon_sym_break] = ACTIONS(600), - [anon_sym_const] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_enum] = ACTIONS(600), - [anon_sym_fn] = ACTIONS(600), - [anon_sym_for] = ACTIONS(600), - [anon_sym_if] = ACTIONS(600), - [anon_sym_impl] = ACTIONS(600), - [anon_sym_let] = ACTIONS(600), - [anon_sym_loop] = ACTIONS(600), - [anon_sym_match] = ACTIONS(600), - [anon_sym_mod] = ACTIONS(600), - [anon_sym_pub] = ACTIONS(600), - [anon_sym_return] = ACTIONS(600), - [anon_sym_static] = ACTIONS(600), - [anon_sym_struct] = ACTIONS(600), - [anon_sym_trait] = ACTIONS(600), - [anon_sym_type] = ACTIONS(600), - [anon_sym_union] = ACTIONS(600), - [anon_sym_unsafe] = ACTIONS(600), - [anon_sym_use] = ACTIONS(600), - [anon_sym_while] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(598), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(600), - [anon_sym_extern] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_PIPE] = ACTIONS(600), - [anon_sym_CARET] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(598), - [anon_sym_BANG_EQ] = ACTIONS(598), - [anon_sym_LT_EQ] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(598), - [anon_sym_DASH_EQ] = ACTIONS(598), - [anon_sym_STAR_EQ] = ACTIONS(598), - [anon_sym_SLASH_EQ] = ACTIONS(598), - [anon_sym_PERCENT_EQ] = ACTIONS(598), - [anon_sym_AMP_EQ] = ACTIONS(598), - [anon_sym_PIPE_EQ] = ACTIONS(598), - [anon_sym_CARET_EQ] = ACTIONS(598), - [anon_sym_LT_LT_EQ] = ACTIONS(598), - [anon_sym_GT_GT_EQ] = ACTIONS(598), - [anon_sym_yield] = ACTIONS(600), - [anon_sym_move] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(600), - [sym_integer_literal] = ACTIONS(598), - [aux_sym_string_literal_token1] = ACTIONS(598), - [sym_char_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(600), - [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_crate] = ACTIONS(600), - [sym_metavariable] = ACTIONS(598), - [sym_raw_string_literal] = ACTIONS(598), - [sym_float_literal] = ACTIONS(598), - [sym_block_comment] = ACTIONS(3), - }, - [103] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1069), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [104] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1144), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [91] = { + [ts_builtin_sym_end] = ACTIONS(566), + [sym_identifier] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_macro_rules_BANG] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u128] = ACTIONS(568), + [anon_sym_i128] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_str] = ACTIONS(568), + [anon_sym_char] = ACTIONS(568), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_as] = ACTIONS(568), + [anon_sym_async] = ACTIONS(568), + [anon_sym_break] = ACTIONS(568), + [anon_sym_const] = ACTIONS(568), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(568), + [anon_sym_fn] = ACTIONS(568), + [anon_sym_for] = ACTIONS(568), + [anon_sym_if] = ACTIONS(568), + [anon_sym_impl] = ACTIONS(568), + [anon_sym_let] = ACTIONS(568), + [anon_sym_loop] = ACTIONS(568), + [anon_sym_match] = ACTIONS(568), + [anon_sym_mod] = ACTIONS(568), + [anon_sym_pub] = ACTIONS(568), + [anon_sym_return] = ACTIONS(568), + [anon_sym_static] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(568), + [anon_sym_trait] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_union] = ACTIONS(568), + [anon_sym_unsafe] = ACTIONS(568), + [anon_sym_use] = ACTIONS(568), + [anon_sym_while] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_extern] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_move] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(566), + [sym_char_literal] = ACTIONS(566), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(568), + [sym_super] = ACTIONS(568), + [sym_crate] = ACTIONS(568), + [sym_metavariable] = ACTIONS(566), + [sym_raw_string_literal] = ACTIONS(566), + [sym_float_literal] = ACTIONS(566), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1297), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), + [92] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [93] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27221,7 +25922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27240,53 +25941,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1142), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [94] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27327,7 +26028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27346,265 +26047,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [ts_builtin_sym_end] = ACTIONS(602), - [sym_identifier] = ACTIONS(604), - [anon_sym_SEMI] = ACTIONS(602), - [anon_sym_macro_rules_BANG] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_RBRACE] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(604), - [anon_sym_QMARK] = ACTIONS(602), - [anon_sym_u8] = ACTIONS(604), - [anon_sym_i8] = ACTIONS(604), - [anon_sym_u16] = ACTIONS(604), - [anon_sym_i16] = ACTIONS(604), - [anon_sym_u32] = ACTIONS(604), - [anon_sym_i32] = ACTIONS(604), - [anon_sym_u64] = ACTIONS(604), - [anon_sym_i64] = ACTIONS(604), - [anon_sym_u128] = ACTIONS(604), - [anon_sym_i128] = ACTIONS(604), - [anon_sym_isize] = ACTIONS(604), - [anon_sym_usize] = ACTIONS(604), - [anon_sym_f32] = ACTIONS(604), - [anon_sym_f64] = ACTIONS(604), - [anon_sym_bool] = ACTIONS(604), - [anon_sym_str] = ACTIONS(604), - [anon_sym_char] = ACTIONS(604), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_as] = ACTIONS(604), - [anon_sym_async] = ACTIONS(604), - [anon_sym_break] = ACTIONS(604), - [anon_sym_const] = ACTIONS(604), - [anon_sym_continue] = ACTIONS(604), - [anon_sym_default] = ACTIONS(604), - [anon_sym_enum] = ACTIONS(604), - [anon_sym_fn] = ACTIONS(604), - [anon_sym_for] = ACTIONS(604), - [anon_sym_if] = ACTIONS(604), - [anon_sym_impl] = ACTIONS(604), - [anon_sym_let] = ACTIONS(604), - [anon_sym_loop] = ACTIONS(604), - [anon_sym_match] = ACTIONS(604), - [anon_sym_mod] = ACTIONS(604), - [anon_sym_pub] = ACTIONS(604), - [anon_sym_return] = ACTIONS(604), - [anon_sym_static] = ACTIONS(604), - [anon_sym_struct] = ACTIONS(604), - [anon_sym_trait] = ACTIONS(604), - [anon_sym_type] = ACTIONS(604), - [anon_sym_union] = ACTIONS(604), - [anon_sym_unsafe] = ACTIONS(604), - [anon_sym_use] = ACTIONS(604), - [anon_sym_while] = ACTIONS(604), - [anon_sym_POUND] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_EQ] = ACTIONS(604), - [anon_sym_extern] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(604), - [anon_sym_GT] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(604), - [anon_sym_DOT_DOT_EQ] = ACTIONS(602), - [anon_sym_DASH] = ACTIONS(604), - [anon_sym_AMP_AMP] = ACTIONS(602), - [anon_sym_PIPE_PIPE] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(604), - [anon_sym_CARET] = ACTIONS(604), - [anon_sym_EQ_EQ] = ACTIONS(602), - [anon_sym_BANG_EQ] = ACTIONS(602), - [anon_sym_LT_EQ] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(602), - [anon_sym_LT_LT] = ACTIONS(604), - [anon_sym_GT_GT] = ACTIONS(604), - [anon_sym_SLASH] = ACTIONS(604), - [anon_sym_PERCENT] = ACTIONS(604), - [anon_sym_PLUS_EQ] = ACTIONS(602), - [anon_sym_DASH_EQ] = ACTIONS(602), - [anon_sym_STAR_EQ] = ACTIONS(602), - [anon_sym_SLASH_EQ] = ACTIONS(602), - [anon_sym_PERCENT_EQ] = ACTIONS(602), - [anon_sym_AMP_EQ] = ACTIONS(602), - [anon_sym_PIPE_EQ] = ACTIONS(602), - [anon_sym_CARET_EQ] = ACTIONS(602), - [anon_sym_LT_LT_EQ] = ACTIONS(602), - [anon_sym_GT_GT_EQ] = ACTIONS(602), - [anon_sym_yield] = ACTIONS(604), - [anon_sym_move] = ACTIONS(604), - [anon_sym_DOT] = ACTIONS(604), - [sym_integer_literal] = ACTIONS(602), - [aux_sym_string_literal_token1] = ACTIONS(602), - [sym_char_literal] = ACTIONS(602), - [anon_sym_true] = ACTIONS(604), - [anon_sym_false] = ACTIONS(604), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(604), - [sym_super] = ACTIONS(604), - [sym_crate] = ACTIONS(604), - [sym_metavariable] = ACTIONS(602), - [sym_raw_string_literal] = ACTIONS(602), - [sym_float_literal] = ACTIONS(602), - [sym_block_comment] = ACTIONS(3), - }, - [109] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [95] = { + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_macro_rules_BANG] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_async] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(572), + [anon_sym_fn] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_impl] = ACTIONS(572), + [anon_sym_let] = ACTIONS(572), + [anon_sym_loop] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_mod] = ACTIONS(572), + [anon_sym_pub] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_static] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_trait] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_unsafe] = ACTIONS(572), + [anon_sym_use] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_move] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [96] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27664,167 +26259,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [111] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [97] = { + [ts_builtin_sym_end] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_macro_rules_BANG] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_break] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(576), + [anon_sym_fn] = ACTIONS(576), + [anon_sym_for] = ACTIONS(576), + [anon_sym_if] = ACTIONS(576), + [anon_sym_impl] = ACTIONS(576), + [anon_sym_let] = ACTIONS(576), + [anon_sym_loop] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_mod] = ACTIONS(576), + [anon_sym_pub] = ACTIONS(576), + [anon_sym_return] = ACTIONS(576), + [anon_sym_static] = ACTIONS(576), + [anon_sym_struct] = ACTIONS(576), + [anon_sym_trait] = ACTIONS(576), + [anon_sym_type] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_unsafe] = ACTIONS(576), + [anon_sym_use] = ACTIONS(576), + [anon_sym_while] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_extern] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(576), + [anon_sym_move] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), + [98] = { + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_macro_rules_BANG] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_async] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_impl] = ACTIONS(580), + [anon_sym_let] = ACTIONS(580), + [anon_sym_loop] = ACTIONS(580), + [anon_sym_match] = ACTIONS(580), + [anon_sym_mod] = ACTIONS(580), + [anon_sym_pub] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_struct] = ACTIONS(580), + [anon_sym_trait] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_unsafe] = ACTIONS(580), + [anon_sym_use] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_extern] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [anon_sym_move] = ACTIONS(580), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), + [sym_block_comment] = ACTIONS(3), + }, + [99] = { + [ts_builtin_sym_end] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_macro_rules_BANG] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_extern] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_yield] = ACTIONS(584), + [anon_sym_move] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), + [sym_block_comment] = ACTIONS(3), + }, + [100] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [101] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), [anon_sym_i16] = ACTIONS(21), [anon_sym_u32] = ACTIONS(21), [anon_sym_i32] = ACTIONS(21), @@ -27876,53 +26789,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [113] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1069), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [102] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27982,53 +26895,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1141), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [103] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28069,7 +26982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28088,53 +27001,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1138), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [104] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28175,7 +27088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28194,159 +27107,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [117] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1137), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [105] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28387,7 +27194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28406,53 +27213,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1135), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [106] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1300), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28493,7 +27300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28512,56 +27319,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1133), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [107] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(230), + [sym_if_let_expression] = STATE(230), + [sym_match_expression] = STATE(230), + [sym_while_expression] = STATE(230), + [sym_while_let_expression] = STATE(230), + [sym_loop_expression] = STATE(230), + [sym_for_expression] = STATE(230), + [sym_const_block] = STATE(230), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2539), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(230), + [sym_async_block] = STATE(230), + [sym_block] = STATE(230), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(586), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -28582,24 +27389,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(588), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(590), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(598), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28618,53 +27425,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [108] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1310), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28724,56 +27531,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [109] = { + [ts_builtin_sym_end] = ACTIONS(604), + [sym_identifier] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_macro_rules_BANG] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_isize] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_f32] = ACTIONS(606), + [anon_sym_f64] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_str] = ACTIONS(606), + [anon_sym_char] = ACTIONS(606), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_async] = ACTIONS(606), + [anon_sym_break] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_fn] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_impl] = ACTIONS(606), + [anon_sym_let] = ACTIONS(606), + [anon_sym_loop] = ACTIONS(606), + [anon_sym_match] = ACTIONS(606), + [anon_sym_mod] = ACTIONS(606), + [anon_sym_pub] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_static] = ACTIONS(606), + [anon_sym_struct] = ACTIONS(606), + [anon_sym_trait] = ACTIONS(606), + [anon_sym_type] = ACTIONS(606), + [anon_sym_union] = ACTIONS(606), + [anon_sym_unsafe] = ACTIONS(606), + [anon_sym_use] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_extern] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_PLUS_EQ] = ACTIONS(604), + [anon_sym_DASH_EQ] = ACTIONS(604), + [anon_sym_STAR_EQ] = ACTIONS(604), + [anon_sym_SLASH_EQ] = ACTIONS(604), + [anon_sym_PERCENT_EQ] = ACTIONS(604), + [anon_sym_AMP_EQ] = ACTIONS(604), + [anon_sym_PIPE_EQ] = ACTIONS(604), + [anon_sym_CARET_EQ] = ACTIONS(604), + [anon_sym_LT_LT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_EQ] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(606), + [anon_sym_move] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(606), + [sym_integer_literal] = ACTIONS(604), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_char_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(606), + [sym_super] = ACTIONS(606), + [sym_crate] = ACTIONS(606), + [sym_metavariable] = ACTIONS(604), + [sym_raw_string_literal] = ACTIONS(604), + [sym_float_literal] = ACTIONS(604), + [sym_block_comment] = ACTIONS(3), + }, + [110] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(230), + [sym_if_let_expression] = STATE(230), + [sym_match_expression] = STATE(230), + [sym_while_expression] = STATE(230), + [sym_while_let_expression] = STATE(230), + [sym_loop_expression] = STATE(230), + [sym_for_expression] = STATE(230), + [sym_const_block] = STATE(230), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2539), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(230), + [sym_async_block] = STATE(230), + [sym_block] = STATE(230), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(586), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -28794,19 +27707,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(588), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(590), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(598), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -28830,53 +27743,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [111] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28936,162 +27849,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [ts_builtin_sym_end] = ACTIONS(606), - [sym_identifier] = ACTIONS(608), - [anon_sym_SEMI] = ACTIONS(606), - [anon_sym_macro_rules_BANG] = ACTIONS(606), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LBRACE] = ACTIONS(606), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_QMARK] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(608), - [anon_sym_i8] = ACTIONS(608), - [anon_sym_u16] = ACTIONS(608), - [anon_sym_i16] = ACTIONS(608), - [anon_sym_u32] = ACTIONS(608), - [anon_sym_i32] = ACTIONS(608), - [anon_sym_u64] = ACTIONS(608), - [anon_sym_i64] = ACTIONS(608), - [anon_sym_u128] = ACTIONS(608), - [anon_sym_i128] = ACTIONS(608), - [anon_sym_isize] = ACTIONS(608), - [anon_sym_usize] = ACTIONS(608), - [anon_sym_f32] = ACTIONS(608), - [anon_sym_f64] = ACTIONS(608), - [anon_sym_bool] = ACTIONS(608), - [anon_sym_str] = ACTIONS(608), - [anon_sym_char] = ACTIONS(608), - [anon_sym_SQUOTE] = ACTIONS(608), - [anon_sym_as] = ACTIONS(608), - [anon_sym_async] = ACTIONS(608), - [anon_sym_break] = ACTIONS(608), - [anon_sym_const] = ACTIONS(608), - [anon_sym_continue] = ACTIONS(608), - [anon_sym_default] = ACTIONS(608), - [anon_sym_enum] = ACTIONS(608), - [anon_sym_fn] = ACTIONS(608), - [anon_sym_for] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_impl] = ACTIONS(608), - [anon_sym_let] = ACTIONS(608), - [anon_sym_loop] = ACTIONS(608), - [anon_sym_match] = ACTIONS(608), - [anon_sym_mod] = ACTIONS(608), - [anon_sym_pub] = ACTIONS(608), - [anon_sym_return] = ACTIONS(608), - [anon_sym_static] = ACTIONS(608), - [anon_sym_struct] = ACTIONS(608), - [anon_sym_trait] = ACTIONS(608), - [anon_sym_type] = ACTIONS(608), - [anon_sym_union] = ACTIONS(608), - [anon_sym_unsafe] = ACTIONS(608), - [anon_sym_use] = ACTIONS(608), - [anon_sym_while] = ACTIONS(608), - [anon_sym_POUND] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(608), - [anon_sym_EQ] = ACTIONS(608), - [anon_sym_extern] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_COLON_COLON] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(606), - [anon_sym_PIPE_PIPE] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_EQ_EQ] = ACTIONS(606), - [anon_sym_BANG_EQ] = ACTIONS(606), - [anon_sym_LT_EQ] = ACTIONS(606), - [anon_sym_GT_EQ] = ACTIONS(606), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(608), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_PLUS_EQ] = ACTIONS(606), - [anon_sym_DASH_EQ] = ACTIONS(606), - [anon_sym_STAR_EQ] = ACTIONS(606), - [anon_sym_SLASH_EQ] = ACTIONS(606), - [anon_sym_PERCENT_EQ] = ACTIONS(606), - [anon_sym_AMP_EQ] = ACTIONS(606), - [anon_sym_PIPE_EQ] = ACTIONS(606), - [anon_sym_CARET_EQ] = ACTIONS(606), - [anon_sym_LT_LT_EQ] = ACTIONS(606), - [anon_sym_GT_GT_EQ] = ACTIONS(606), - [anon_sym_yield] = ACTIONS(608), - [anon_sym_move] = ACTIONS(608), - [anon_sym_DOT] = ACTIONS(608), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(606), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(608), - [anon_sym_false] = ACTIONS(608), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(608), - [sym_super] = ACTIONS(608), - [sym_crate] = ACTIONS(608), - [sym_metavariable] = ACTIONS(606), - [sym_raw_string_literal] = ACTIONS(606), - [sym_float_literal] = ACTIONS(606), + [112] = { + [ts_builtin_sym_end] = ACTIONS(608), + [sym_identifier] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_macro_rules_BANG] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_u8] = ACTIONS(610), + [anon_sym_i8] = ACTIONS(610), + [anon_sym_u16] = ACTIONS(610), + [anon_sym_i16] = ACTIONS(610), + [anon_sym_u32] = ACTIONS(610), + [anon_sym_i32] = ACTIONS(610), + [anon_sym_u64] = ACTIONS(610), + [anon_sym_i64] = ACTIONS(610), + [anon_sym_u128] = ACTIONS(610), + [anon_sym_i128] = ACTIONS(610), + [anon_sym_isize] = ACTIONS(610), + [anon_sym_usize] = ACTIONS(610), + [anon_sym_f32] = ACTIONS(610), + [anon_sym_f64] = ACTIONS(610), + [anon_sym_bool] = ACTIONS(610), + [anon_sym_str] = ACTIONS(610), + [anon_sym_char] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_async] = ACTIONS(610), + [anon_sym_break] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(610), + [anon_sym_default] = ACTIONS(610), + [anon_sym_enum] = ACTIONS(610), + [anon_sym_fn] = ACTIONS(610), + [anon_sym_for] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [anon_sym_impl] = ACTIONS(610), + [anon_sym_let] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(610), + [anon_sym_match] = ACTIONS(610), + [anon_sym_mod] = ACTIONS(610), + [anon_sym_pub] = ACTIONS(610), + [anon_sym_return] = ACTIONS(610), + [anon_sym_static] = ACTIONS(610), + [anon_sym_struct] = ACTIONS(610), + [anon_sym_trait] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_union] = ACTIONS(610), + [anon_sym_unsafe] = ACTIONS(610), + [anon_sym_use] = ACTIONS(610), + [anon_sym_while] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_extern] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_move] = ACTIONS(610), + [anon_sym_DOT] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(608), + [aux_sym_string_literal_token1] = ACTIONS(608), + [sym_char_literal] = ACTIONS(608), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_crate] = ACTIONS(610), + [sym_metavariable] = ACTIONS(608), + [sym_raw_string_literal] = ACTIONS(608), + [sym_float_literal] = ACTIONS(608), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1295), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(224), - [sym_if_let_expression] = STATE(224), - [sym_match_expression] = STATE(224), - [sym_while_expression] = STATE(224), - [sym_while_let_expression] = STATE(224), - [sym_loop_expression] = STATE(224), - [sym_for_expression] = STATE(224), - [sym_const_block] = STATE(224), - [sym_closure_expression] = STATE(772), + [113] = { + [ts_builtin_sym_end] = ACTIONS(612), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_macro_rules_BANG] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_extern] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_move] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(612), + [aux_sym_string_literal_token1] = ACTIONS(612), + [sym_char_literal] = ACTIONS(612), + [anon_sym_true] = ACTIONS(614), + [anon_sym_false] = ACTIONS(614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(612), + [sym_raw_string_literal] = ACTIONS(612), + [sym_float_literal] = ACTIONS(612), + [sym_block_comment] = ACTIONS(3), + }, + [114] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [115] = { + [ts_builtin_sym_end] = ACTIONS(616), + [sym_identifier] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_macro_rules_BANG] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_async] = ACTIONS(618), + [anon_sym_break] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_continue] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_enum] = ACTIONS(618), + [anon_sym_fn] = ACTIONS(618), + [anon_sym_for] = ACTIONS(618), + [anon_sym_if] = ACTIONS(618), + [anon_sym_impl] = ACTIONS(618), + [anon_sym_let] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(618), + [anon_sym_match] = ACTIONS(618), + [anon_sym_mod] = ACTIONS(618), + [anon_sym_pub] = ACTIONS(618), + [anon_sym_return] = ACTIONS(618), + [anon_sym_static] = ACTIONS(618), + [anon_sym_struct] = ACTIONS(618), + [anon_sym_trait] = ACTIONS(618), + [anon_sym_type] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(618), + [anon_sym_use] = ACTIONS(618), + [anon_sym_while] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_EQ] = ACTIONS(618), + [anon_sym_extern] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_CARET] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_yield] = ACTIONS(618), + [anon_sym_move] = ACTIONS(618), + [anon_sym_DOT] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_metavariable] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), + [sym_block_comment] = ACTIONS(3), + }, + [116] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2516), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(224), - [sym_async_block] = STATE(224), - [sym_block] = STATE(224), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29112,24 +28343,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(612), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(614), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(616), - [anon_sym_if] = ACTIONS(618), - [anon_sym_loop] = ACTIONS(620), - [anon_sym_match] = ACTIONS(622), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(624), - [anon_sym_while] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29148,56 +28379,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(224), - [sym_if_let_expression] = STATE(224), - [sym_match_expression] = STATE(224), - [sym_while_expression] = STATE(224), - [sym_while_let_expression] = STATE(224), - [sym_loop_expression] = STATE(224), - [sym_for_expression] = STATE(224), - [sym_const_block] = STATE(224), - [sym_closure_expression] = STATE(772), + [117] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2516), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(224), - [sym_async_block] = STATE(224), - [sym_block] = STATE(224), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29218,24 +28449,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(612), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(614), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(616), - [anon_sym_if] = ACTIONS(618), - [anon_sym_loop] = ACTIONS(620), - [anon_sym_match] = ACTIONS(622), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(624), - [anon_sym_while] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29254,159 +28485,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [ts_builtin_sym_end] = ACTIONS(628), - [sym_identifier] = ACTIONS(630), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_macro_rules_BANG] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_u8] = ACTIONS(630), - [anon_sym_i8] = ACTIONS(630), - [anon_sym_u16] = ACTIONS(630), - [anon_sym_i16] = ACTIONS(630), - [anon_sym_u32] = ACTIONS(630), - [anon_sym_i32] = ACTIONS(630), - [anon_sym_u64] = ACTIONS(630), - [anon_sym_i64] = ACTIONS(630), - [anon_sym_u128] = ACTIONS(630), - [anon_sym_i128] = ACTIONS(630), - [anon_sym_isize] = ACTIONS(630), - [anon_sym_usize] = ACTIONS(630), - [anon_sym_f32] = ACTIONS(630), - [anon_sym_f64] = ACTIONS(630), - [anon_sym_bool] = ACTIONS(630), - [anon_sym_str] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(630), - [anon_sym_as] = ACTIONS(630), - [anon_sym_async] = ACTIONS(630), - [anon_sym_break] = ACTIONS(630), - [anon_sym_const] = ACTIONS(630), - [anon_sym_continue] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_enum] = ACTIONS(630), - [anon_sym_fn] = ACTIONS(630), - [anon_sym_for] = ACTIONS(630), - [anon_sym_if] = ACTIONS(630), - [anon_sym_impl] = ACTIONS(630), - [anon_sym_let] = ACTIONS(630), - [anon_sym_loop] = ACTIONS(630), - [anon_sym_match] = ACTIONS(630), - [anon_sym_mod] = ACTIONS(630), - [anon_sym_pub] = ACTIONS(630), - [anon_sym_return] = ACTIONS(630), - [anon_sym_static] = ACTIONS(630), - [anon_sym_struct] = ACTIONS(630), - [anon_sym_trait] = ACTIONS(630), - [anon_sym_type] = ACTIONS(630), - [anon_sym_union] = ACTIONS(630), - [anon_sym_unsafe] = ACTIONS(630), - [anon_sym_use] = ACTIONS(630), - [anon_sym_while] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(628), - [anon_sym_BANG] = ACTIONS(630), - [anon_sym_EQ] = ACTIONS(630), - [anon_sym_extern] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_COLON_COLON] = ACTIONS(628), - [anon_sym_AMP] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [anon_sym_DOT_DOT] = ACTIONS(630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(628), - [anon_sym_PIPE_PIPE] = ACTIONS(628), - [anon_sym_PIPE] = ACTIONS(630), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(628), - [anon_sym_BANG_EQ] = ACTIONS(628), - [anon_sym_LT_EQ] = ACTIONS(628), - [anon_sym_GT_EQ] = ACTIONS(628), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(630), - [anon_sym_SLASH] = ACTIONS(630), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_PLUS_EQ] = ACTIONS(628), - [anon_sym_DASH_EQ] = ACTIONS(628), - [anon_sym_STAR_EQ] = ACTIONS(628), - [anon_sym_SLASH_EQ] = ACTIONS(628), - [anon_sym_PERCENT_EQ] = ACTIONS(628), - [anon_sym_AMP_EQ] = ACTIONS(628), - [anon_sym_PIPE_EQ] = ACTIONS(628), - [anon_sym_CARET_EQ] = ACTIONS(628), - [anon_sym_LT_LT_EQ] = ACTIONS(628), - [anon_sym_GT_GT_EQ] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(630), - [anon_sym_move] = ACTIONS(630), - [anon_sym_DOT] = ACTIONS(630), - [sym_integer_literal] = ACTIONS(628), - [aux_sym_string_literal_token1] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(630), - [sym_super] = ACTIONS(630), - [sym_crate] = ACTIONS(630), - [sym_metavariable] = ACTIONS(628), - [sym_raw_string_literal] = ACTIONS(628), - [sym_float_literal] = ACTIONS(628), - [sym_block_comment] = ACTIONS(3), - }, - [127] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [118] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1158), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29447,7 +28572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29466,53 +28591,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [119] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1165), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29553,7 +28678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29572,159 +28697,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [120] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1167), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [121] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29784,689 +28909,689 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [ts_builtin_sym_end] = ACTIONS(632), - [sym_identifier] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_macro_rules_BANG] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_u8] = ACTIONS(634), - [anon_sym_i8] = ACTIONS(634), - [anon_sym_u16] = ACTIONS(634), - [anon_sym_i16] = ACTIONS(634), - [anon_sym_u32] = ACTIONS(634), - [anon_sym_i32] = ACTIONS(634), - [anon_sym_u64] = ACTIONS(634), - [anon_sym_i64] = ACTIONS(634), - [anon_sym_u128] = ACTIONS(634), - [anon_sym_i128] = ACTIONS(634), - [anon_sym_isize] = ACTIONS(634), - [anon_sym_usize] = ACTIONS(634), - [anon_sym_f32] = ACTIONS(634), - [anon_sym_f64] = ACTIONS(634), - [anon_sym_bool] = ACTIONS(634), - [anon_sym_str] = ACTIONS(634), - [anon_sym_char] = ACTIONS(634), - [anon_sym_SQUOTE] = ACTIONS(634), - [anon_sym_as] = ACTIONS(634), - [anon_sym_async] = ACTIONS(634), - [anon_sym_break] = ACTIONS(634), - [anon_sym_const] = ACTIONS(634), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(634), - [anon_sym_fn] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_impl] = ACTIONS(634), - [anon_sym_let] = ACTIONS(634), - [anon_sym_loop] = ACTIONS(634), - [anon_sym_match] = ACTIONS(634), - [anon_sym_mod] = ACTIONS(634), - [anon_sym_pub] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_static] = ACTIONS(634), - [anon_sym_struct] = ACTIONS(634), - [anon_sym_trait] = ACTIONS(634), - [anon_sym_type] = ACTIONS(634), - [anon_sym_union] = ACTIONS(634), - [anon_sym_unsafe] = ACTIONS(634), - [anon_sym_use] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(632), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_extern] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(634), - [anon_sym_COLON_COLON] = ACTIONS(632), - [anon_sym_AMP] = ACTIONS(634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [anon_sym_DOT_DOT] = ACTIONS(634), - [anon_sym_DOT_DOT_EQ] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_AMP_AMP] = ACTIONS(632), - [anon_sym_PIPE_PIPE] = ACTIONS(632), - [anon_sym_PIPE] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_EQ_EQ] = ACTIONS(632), - [anon_sym_BANG_EQ] = ACTIONS(632), - [anon_sym_LT_EQ] = ACTIONS(632), - [anon_sym_GT_EQ] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_SLASH] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(632), - [anon_sym_DASH_EQ] = ACTIONS(632), - [anon_sym_STAR_EQ] = ACTIONS(632), - [anon_sym_SLASH_EQ] = ACTIONS(632), - [anon_sym_PERCENT_EQ] = ACTIONS(632), - [anon_sym_AMP_EQ] = ACTIONS(632), - [anon_sym_PIPE_EQ] = ACTIONS(632), - [anon_sym_CARET_EQ] = ACTIONS(632), - [anon_sym_LT_LT_EQ] = ACTIONS(632), - [anon_sym_GT_GT_EQ] = ACTIONS(632), - [anon_sym_yield] = ACTIONS(634), - [anon_sym_move] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(634), - [sym_integer_literal] = ACTIONS(632), - [aux_sym_string_literal_token1] = ACTIONS(632), - [sym_char_literal] = ACTIONS(632), - [anon_sym_true] = ACTIONS(634), - [anon_sym_false] = ACTIONS(634), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(634), - [sym_super] = ACTIONS(634), - [sym_crate] = ACTIONS(634), - [sym_metavariable] = ACTIONS(632), - [sym_raw_string_literal] = ACTIONS(632), - [sym_float_literal] = ACTIONS(632), - [sym_block_comment] = ACTIONS(3), - }, - [132] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [122] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1166), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [123] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [124] = { + [ts_builtin_sym_end] = ACTIONS(620), + [sym_identifier] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(620), + [anon_sym_macro_rules_BANG] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_async] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_fn] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_impl] = ACTIONS(622), + [anon_sym_let] = ACTIONS(622), + [anon_sym_loop] = ACTIONS(622), + [anon_sym_match] = ACTIONS(622), + [anon_sym_mod] = ACTIONS(622), + [anon_sym_pub] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_static] = ACTIONS(622), + [anon_sym_struct] = ACTIONS(622), + [anon_sym_trait] = ACTIONS(622), + [anon_sym_type] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_unsafe] = ACTIONS(622), + [anon_sym_use] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_extern] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_COLON_COLON] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_BANG_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(620), + [anon_sym_DASH_EQ] = ACTIONS(620), + [anon_sym_STAR_EQ] = ACTIONS(620), + [anon_sym_SLASH_EQ] = ACTIONS(620), + [anon_sym_PERCENT_EQ] = ACTIONS(620), + [anon_sym_AMP_EQ] = ACTIONS(620), + [anon_sym_PIPE_EQ] = ACTIONS(620), + [anon_sym_CARET_EQ] = ACTIONS(620), + [anon_sym_LT_LT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_EQ] = ACTIONS(620), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_move] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(620), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), + [sym_block_comment] = ACTIONS(3), + }, + [125] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [ts_builtin_sym_end] = ACTIONS(636), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_macro_rules_BANG] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_EQ] = ACTIONS(638), - [anon_sym_extern] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(638), - [anon_sym_COLON_COLON] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(636), - [anon_sym_DOT_DOT] = ACTIONS(638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_LT_LT] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_SLASH] = ACTIONS(638), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_AMP_EQ] = ACTIONS(636), - [anon_sym_PIPE_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_LT_LT_EQ] = ACTIONS(636), - [anon_sym_GT_GT_EQ] = ACTIONS(636), - [anon_sym_yield] = ACTIONS(638), - [anon_sym_move] = ACTIONS(638), - [anon_sym_DOT] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(636), - [aux_sym_string_literal_token1] = ACTIONS(636), - [sym_char_literal] = ACTIONS(636), - [anon_sym_true] = ACTIONS(638), - [anon_sym_false] = ACTIONS(638), + [126] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(636), - [sym_raw_string_literal] = ACTIONS(636), - [sym_float_literal] = ACTIONS(636), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [127] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [128] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30506,8 +29631,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -30526,53 +29651,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [129] = { + [ts_builtin_sym_end] = ACTIONS(624), + [sym_identifier] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_macro_rules_BANG] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_async] = ACTIONS(626), + [anon_sym_break] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_enum] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(626), + [anon_sym_for] = ACTIONS(626), + [anon_sym_if] = ACTIONS(626), + [anon_sym_impl] = ACTIONS(626), + [anon_sym_let] = ACTIONS(626), + [anon_sym_loop] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_mod] = ACTIONS(626), + [anon_sym_pub] = ACTIONS(626), + [anon_sym_return] = ACTIONS(626), + [anon_sym_static] = ACTIONS(626), + [anon_sym_struct] = ACTIONS(626), + [anon_sym_trait] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(626), + [anon_sym_use] = ACTIONS(626), + [anon_sym_while] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_extern] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(624), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_BANG_EQ] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(624), + [anon_sym_DASH_EQ] = ACTIONS(624), + [anon_sym_STAR_EQ] = ACTIONS(624), + [anon_sym_SLASH_EQ] = ACTIONS(624), + [anon_sym_PERCENT_EQ] = ACTIONS(624), + [anon_sym_AMP_EQ] = ACTIONS(624), + [anon_sym_PIPE_EQ] = ACTIONS(624), + [anon_sym_CARET_EQ] = ACTIONS(624), + [anon_sym_LT_LT_EQ] = ACTIONS(624), + [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_move] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_metavariable] = ACTIONS(624), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), + [sym_block_comment] = ACTIONS(3), + }, + [130] = { + [ts_builtin_sym_end] = ACTIONS(628), + [sym_identifier] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(628), + [anon_sym_macro_rules_BANG] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(630), + [anon_sym_i8] = ACTIONS(630), + [anon_sym_u16] = ACTIONS(630), + [anon_sym_i16] = ACTIONS(630), + [anon_sym_u32] = ACTIONS(630), + [anon_sym_i32] = ACTIONS(630), + [anon_sym_u64] = ACTIONS(630), + [anon_sym_i64] = ACTIONS(630), + [anon_sym_u128] = ACTIONS(630), + [anon_sym_i128] = ACTIONS(630), + [anon_sym_isize] = ACTIONS(630), + [anon_sym_usize] = ACTIONS(630), + [anon_sym_f32] = ACTIONS(630), + [anon_sym_f64] = ACTIONS(630), + [anon_sym_bool] = ACTIONS(630), + [anon_sym_str] = ACTIONS(630), + [anon_sym_char] = ACTIONS(630), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_as] = ACTIONS(630), + [anon_sym_async] = ACTIONS(630), + [anon_sym_break] = ACTIONS(630), + [anon_sym_const] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_enum] = ACTIONS(630), + [anon_sym_fn] = ACTIONS(630), + [anon_sym_for] = ACTIONS(630), + [anon_sym_if] = ACTIONS(630), + [anon_sym_impl] = ACTIONS(630), + [anon_sym_let] = ACTIONS(630), + [anon_sym_loop] = ACTIONS(630), + [anon_sym_match] = ACTIONS(630), + [anon_sym_mod] = ACTIONS(630), + [anon_sym_pub] = ACTIONS(630), + [anon_sym_return] = ACTIONS(630), + [anon_sym_static] = ACTIONS(630), + [anon_sym_struct] = ACTIONS(630), + [anon_sym_trait] = ACTIONS(630), + [anon_sym_type] = ACTIONS(630), + [anon_sym_union] = ACTIONS(630), + [anon_sym_unsafe] = ACTIONS(630), + [anon_sym_use] = ACTIONS(630), + [anon_sym_while] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(630), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_extern] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_COLON_COLON] = ACTIONS(628), + [anon_sym_AMP] = ACTIONS(630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [anon_sym_DOT_DOT] = ACTIONS(630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_PIPE_PIPE] = ACTIONS(628), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(628), + [anon_sym_BANG_EQ] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_PLUS_EQ] = ACTIONS(628), + [anon_sym_DASH_EQ] = ACTIONS(628), + [anon_sym_STAR_EQ] = ACTIONS(628), + [anon_sym_SLASH_EQ] = ACTIONS(628), + [anon_sym_PERCENT_EQ] = ACTIONS(628), + [anon_sym_AMP_EQ] = ACTIONS(628), + [anon_sym_PIPE_EQ] = ACTIONS(628), + [anon_sym_CARET_EQ] = ACTIONS(628), + [anon_sym_LT_LT_EQ] = ACTIONS(628), + [anon_sym_GT_GT_EQ] = ACTIONS(628), + [anon_sym_yield] = ACTIONS(630), + [anon_sym_move] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(628), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(630), + [anon_sym_false] = ACTIONS(630), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(630), + [sym_super] = ACTIONS(630), + [sym_crate] = ACTIONS(630), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(628), + [sym_float_literal] = ACTIONS(628), + [sym_block_comment] = ACTIONS(3), + }, + [131] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30632,583 +29969,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [132] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1309), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [ts_builtin_sym_end] = ACTIONS(640), - [sym_identifier] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_macro_rules_BANG] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(642), - [anon_sym_i8] = ACTIONS(642), - [anon_sym_u16] = ACTIONS(642), - [anon_sym_i16] = ACTIONS(642), - [anon_sym_u32] = ACTIONS(642), - [anon_sym_i32] = ACTIONS(642), - [anon_sym_u64] = ACTIONS(642), - [anon_sym_i64] = ACTIONS(642), - [anon_sym_u128] = ACTIONS(642), - [anon_sym_i128] = ACTIONS(642), - [anon_sym_isize] = ACTIONS(642), - [anon_sym_usize] = ACTIONS(642), - [anon_sym_f32] = ACTIONS(642), - [anon_sym_f64] = ACTIONS(642), - [anon_sym_bool] = ACTIONS(642), - [anon_sym_str] = ACTIONS(642), - [anon_sym_char] = ACTIONS(642), - [anon_sym_SQUOTE] = ACTIONS(642), - [anon_sym_as] = ACTIONS(642), - [anon_sym_async] = ACTIONS(642), - [anon_sym_break] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_enum] = ACTIONS(642), - [anon_sym_fn] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_impl] = ACTIONS(642), - [anon_sym_let] = ACTIONS(642), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(642), - [anon_sym_mod] = ACTIONS(642), - [anon_sym_pub] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_static] = ACTIONS(642), - [anon_sym_struct] = ACTIONS(642), - [anon_sym_trait] = ACTIONS(642), - [anon_sym_type] = ACTIONS(642), - [anon_sym_union] = ACTIONS(642), - [anon_sym_unsafe] = ACTIONS(642), - [anon_sym_use] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_extern] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_CARET] = ACTIONS(642), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(642), - [anon_sym_move] = ACTIONS(642), - [anon_sym_DOT] = ACTIONS(642), - [sym_integer_literal] = ACTIONS(640), - [aux_sym_string_literal_token1] = ACTIONS(640), - [sym_char_literal] = ACTIONS(640), - [anon_sym_true] = ACTIONS(642), - [anon_sym_false] = ACTIONS(642), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(642), - [sym_super] = ACTIONS(642), - [sym_crate] = ACTIONS(642), - [sym_metavariable] = ACTIONS(640), - [sym_raw_string_literal] = ACTIONS(640), - [sym_float_literal] = ACTIONS(640), - [sym_block_comment] = ACTIONS(3), - }, - [141] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1069), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [133] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [ts_builtin_sym_end] = ACTIONS(644), - [sym_identifier] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_macro_rules_BANG] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_u8] = ACTIONS(646), - [anon_sym_i8] = ACTIONS(646), - [anon_sym_u16] = ACTIONS(646), - [anon_sym_i16] = ACTIONS(646), - [anon_sym_u32] = ACTIONS(646), - [anon_sym_i32] = ACTIONS(646), - [anon_sym_u64] = ACTIONS(646), - [anon_sym_i64] = ACTIONS(646), - [anon_sym_u128] = ACTIONS(646), - [anon_sym_i128] = ACTIONS(646), - [anon_sym_isize] = ACTIONS(646), - [anon_sym_usize] = ACTIONS(646), - [anon_sym_f32] = ACTIONS(646), - [anon_sym_f64] = ACTIONS(646), - [anon_sym_bool] = ACTIONS(646), - [anon_sym_str] = ACTIONS(646), - [anon_sym_char] = ACTIONS(646), - [anon_sym_SQUOTE] = ACTIONS(646), - [anon_sym_as] = ACTIONS(646), - [anon_sym_async] = ACTIONS(646), - [anon_sym_break] = ACTIONS(646), - [anon_sym_const] = ACTIONS(646), - [anon_sym_continue] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_enum] = ACTIONS(646), - [anon_sym_fn] = ACTIONS(646), - [anon_sym_for] = ACTIONS(646), - [anon_sym_if] = ACTIONS(646), - [anon_sym_impl] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(646), - [anon_sym_match] = ACTIONS(646), - [anon_sym_mod] = ACTIONS(646), - [anon_sym_pub] = ACTIONS(646), - [anon_sym_return] = ACTIONS(646), - [anon_sym_static] = ACTIONS(646), - [anon_sym_struct] = ACTIONS(646), - [anon_sym_trait] = ACTIONS(646), - [anon_sym_type] = ACTIONS(646), - [anon_sym_union] = ACTIONS(646), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_use] = ACTIONS(646), - [anon_sym_while] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(646), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_extern] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_AMP_EQ] = ACTIONS(644), - [anon_sym_PIPE_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_LT_LT_EQ] = ACTIONS(644), - [anon_sym_GT_GT_EQ] = ACTIONS(644), - [anon_sym_yield] = ACTIONS(646), - [anon_sym_move] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [sym_integer_literal] = ACTIONS(644), - [aux_sym_string_literal_token1] = ACTIONS(644), - [sym_char_literal] = ACTIONS(644), - [anon_sym_true] = ACTIONS(646), - [anon_sym_false] = ACTIONS(646), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(646), - [sym_super] = ACTIONS(646), - [sym_crate] = ACTIONS(646), - [sym_metavariable] = ACTIONS(644), - [sym_raw_string_literal] = ACTIONS(644), - [sym_float_literal] = ACTIONS(644), - [sym_block_comment] = ACTIONS(3), - }, - [143] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [134] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [135] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1162), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31249,7 +30374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31268,53 +30393,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [136] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31354,7 +30479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -31374,477 +30499,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [137] = { + [ts_builtin_sym_end] = ACTIONS(632), + [sym_identifier] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(632), + [anon_sym_macro_rules_BANG] = ACTIONS(632), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_enum] = ACTIONS(634), + [anon_sym_fn] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_impl] = ACTIONS(634), + [anon_sym_let] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(634), + [anon_sym_match] = ACTIONS(634), + [anon_sym_mod] = ACTIONS(634), + [anon_sym_pub] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_static] = ACTIONS(634), + [anon_sym_struct] = ACTIONS(634), + [anon_sym_trait] = ACTIONS(634), + [anon_sym_type] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_unsafe] = ACTIONS(634), + [anon_sym_use] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [anon_sym_POUND] = ACTIONS(632), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(634), + [anon_sym_extern] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(634), + [anon_sym_COLON_COLON] = ACTIONS(632), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(632), + [anon_sym_DOT_DOT] = ACTIONS(634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(632), + [anon_sym_PIPE_PIPE] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_EQ_EQ] = ACTIONS(632), + [anon_sym_BANG_EQ] = ACTIONS(632), + [anon_sym_LT_EQ] = ACTIONS(632), + [anon_sym_GT_EQ] = ACTIONS(632), + [anon_sym_LT_LT] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(634), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(634), + [anon_sym_PLUS_EQ] = ACTIONS(632), + [anon_sym_DASH_EQ] = ACTIONS(632), + [anon_sym_STAR_EQ] = ACTIONS(632), + [anon_sym_SLASH_EQ] = ACTIONS(632), + [anon_sym_PERCENT_EQ] = ACTIONS(632), + [anon_sym_AMP_EQ] = ACTIONS(632), + [anon_sym_PIPE_EQ] = ACTIONS(632), + [anon_sym_CARET_EQ] = ACTIONS(632), + [anon_sym_LT_LT_EQ] = ACTIONS(632), + [anon_sym_GT_GT_EQ] = ACTIONS(632), + [anon_sym_yield] = ACTIONS(634), + [anon_sym_move] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(634), + [sym_integer_literal] = ACTIONS(632), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_metavariable] = ACTIONS(632), + [sym_raw_string_literal] = ACTIONS(632), + [sym_float_literal] = ACTIONS(632), + [sym_block_comment] = ACTIONS(3), + }, + [138] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1315), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [139] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [ts_builtin_sym_end] = ACTIONS(648), - [sym_identifier] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_macro_rules_BANG] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_u8] = ACTIONS(650), - [anon_sym_i8] = ACTIONS(650), - [anon_sym_u16] = ACTIONS(650), - [anon_sym_i16] = ACTIONS(650), - [anon_sym_u32] = ACTIONS(650), - [anon_sym_i32] = ACTIONS(650), - [anon_sym_u64] = ACTIONS(650), - [anon_sym_i64] = ACTIONS(650), - [anon_sym_u128] = ACTIONS(650), - [anon_sym_i128] = ACTIONS(650), - [anon_sym_isize] = ACTIONS(650), - [anon_sym_usize] = ACTIONS(650), - [anon_sym_f32] = ACTIONS(650), - [anon_sym_f64] = ACTIONS(650), - [anon_sym_bool] = ACTIONS(650), - [anon_sym_str] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_as] = ACTIONS(650), - [anon_sym_async] = ACTIONS(650), - [anon_sym_break] = ACTIONS(650), - [anon_sym_const] = ACTIONS(650), - [anon_sym_continue] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_enum] = ACTIONS(650), - [anon_sym_fn] = ACTIONS(650), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(650), - [anon_sym_impl] = ACTIONS(650), - [anon_sym_let] = ACTIONS(650), - [anon_sym_loop] = ACTIONS(650), - [anon_sym_match] = ACTIONS(650), - [anon_sym_mod] = ACTIONS(650), - [anon_sym_pub] = ACTIONS(650), - [anon_sym_return] = ACTIONS(650), - [anon_sym_static] = ACTIONS(650), - [anon_sym_struct] = ACTIONS(650), - [anon_sym_trait] = ACTIONS(650), - [anon_sym_type] = ACTIONS(650), - [anon_sym_union] = ACTIONS(650), - [anon_sym_unsafe] = ACTIONS(650), - [anon_sym_use] = ACTIONS(650), - [anon_sym_while] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_extern] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_yield] = ACTIONS(650), - [anon_sym_move] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [sym_integer_literal] = ACTIONS(648), - [aux_sym_string_literal_token1] = ACTIONS(648), - [sym_char_literal] = ACTIONS(648), - [anon_sym_true] = ACTIONS(650), - [anon_sym_false] = ACTIONS(650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(650), - [sym_super] = ACTIONS(650), - [sym_crate] = ACTIONS(650), - [sym_metavariable] = ACTIONS(648), - [sym_raw_string_literal] = ACTIONS(648), - [sym_float_literal] = ACTIONS(648), - [sym_block_comment] = ACTIONS(3), - }, - [149] = { - [ts_builtin_sym_end] = ACTIONS(652), - [sym_identifier] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_macro_rules_BANG] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(654), - [anon_sym_i8] = ACTIONS(654), - [anon_sym_u16] = ACTIONS(654), - [anon_sym_i16] = ACTIONS(654), - [anon_sym_u32] = ACTIONS(654), - [anon_sym_i32] = ACTIONS(654), - [anon_sym_u64] = ACTIONS(654), - [anon_sym_i64] = ACTIONS(654), - [anon_sym_u128] = ACTIONS(654), - [anon_sym_i128] = ACTIONS(654), - [anon_sym_isize] = ACTIONS(654), - [anon_sym_usize] = ACTIONS(654), - [anon_sym_f32] = ACTIONS(654), - [anon_sym_f64] = ACTIONS(654), - [anon_sym_bool] = ACTIONS(654), - [anon_sym_str] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_async] = ACTIONS(654), - [anon_sym_break] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_continue] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_enum] = ACTIONS(654), - [anon_sym_fn] = ACTIONS(654), - [anon_sym_for] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_impl] = ACTIONS(654), - [anon_sym_let] = ACTIONS(654), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(654), - [anon_sym_mod] = ACTIONS(654), - [anon_sym_pub] = ACTIONS(654), - [anon_sym_return] = ACTIONS(654), - [anon_sym_static] = ACTIONS(654), - [anon_sym_struct] = ACTIONS(654), - [anon_sym_trait] = ACTIONS(654), - [anon_sym_type] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_unsafe] = ACTIONS(654), - [anon_sym_use] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_extern] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_COLON_COLON] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(652), - [anon_sym_DOT_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT_EQ] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(652), - [anon_sym_PERCENT_EQ] = ACTIONS(652), - [anon_sym_AMP_EQ] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(652), - [anon_sym_LT_LT_EQ] = ACTIONS(652), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_move] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(654), - [anon_sym_false] = ACTIONS(654), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_metavariable] = ACTIONS(652), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), - [sym_block_comment] = ACTIONS(3), - }, - [150] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [140] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1312), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31904,53 +30923,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [141] = { + [ts_builtin_sym_end] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_macro_rules_BANG] = ACTIONS(636), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_QMARK] = ACTIONS(636), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [anon_sym_POUND] = ACTIONS(636), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_extern] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_COLON_COLON] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(636), + [anon_sym_DOT_DOT] = ACTIONS(638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_EQ_EQ] = ACTIONS(636), + [anon_sym_BANG_EQ] = ACTIONS(636), + [anon_sym_LT_EQ] = ACTIONS(636), + [anon_sym_GT_EQ] = ACTIONS(636), + [anon_sym_LT_LT] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(638), + [anon_sym_PERCENT] = ACTIONS(638), + [anon_sym_PLUS_EQ] = ACTIONS(636), + [anon_sym_DASH_EQ] = ACTIONS(636), + [anon_sym_STAR_EQ] = ACTIONS(636), + [anon_sym_SLASH_EQ] = ACTIONS(636), + [anon_sym_PERCENT_EQ] = ACTIONS(636), + [anon_sym_AMP_EQ] = ACTIONS(636), + [anon_sym_PIPE_EQ] = ACTIONS(636), + [anon_sym_CARET_EQ] = ACTIONS(636), + [anon_sym_LT_LT_EQ] = ACTIONS(636), + [anon_sym_GT_GT_EQ] = ACTIONS(636), + [anon_sym_yield] = ACTIONS(638), + [anon_sym_move] = ACTIONS(638), + [anon_sym_DOT] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(636), + [aux_sym_string_literal_token1] = ACTIONS(636), + [sym_char_literal] = ACTIONS(636), + [anon_sym_true] = ACTIONS(638), + [anon_sym_false] = ACTIONS(638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(636), + [sym_raw_string_literal] = ACTIONS(636), + [sym_float_literal] = ACTIONS(636), + [sym_block_comment] = ACTIONS(3), + }, + [142] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [143] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [144] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1313), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32010,53 +31347,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [145] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1160), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32097,7 +31434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32116,53 +31453,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [146] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1159), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32203,7 +31540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32222,53 +31559,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [147] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1301), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32328,53 +31665,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [148] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32414,7 +31751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -32434,99 +31771,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), + [149] = { + [ts_builtin_sym_end] = ACTIONS(640), + [sym_identifier] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_macro_rules_BANG] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(642), + [anon_sym_i8] = ACTIONS(642), + [anon_sym_u16] = ACTIONS(642), + [anon_sym_i16] = ACTIONS(642), + [anon_sym_u32] = ACTIONS(642), + [anon_sym_i32] = ACTIONS(642), + [anon_sym_u64] = ACTIONS(642), + [anon_sym_i64] = ACTIONS(642), + [anon_sym_u128] = ACTIONS(642), + [anon_sym_i128] = ACTIONS(642), + [anon_sym_isize] = ACTIONS(642), + [anon_sym_usize] = ACTIONS(642), + [anon_sym_f32] = ACTIONS(642), + [anon_sym_f64] = ACTIONS(642), + [anon_sym_bool] = ACTIONS(642), + [anon_sym_str] = ACTIONS(642), + [anon_sym_char] = ACTIONS(642), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_as] = ACTIONS(642), + [anon_sym_async] = ACTIONS(642), + [anon_sym_break] = ACTIONS(642), + [anon_sym_const] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_enum] = ACTIONS(642), + [anon_sym_fn] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_if] = ACTIONS(642), + [anon_sym_impl] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(642), + [anon_sym_mod] = ACTIONS(642), + [anon_sym_pub] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_static] = ACTIONS(642), + [anon_sym_struct] = ACTIONS(642), + [anon_sym_trait] = ACTIONS(642), + [anon_sym_type] = ACTIONS(642), + [anon_sym_union] = ACTIONS(642), + [anon_sym_unsafe] = ACTIONS(642), + [anon_sym_use] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_extern] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT] = ACTIONS(642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_yield] = ACTIONS(642), + [anon_sym_move] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [sym_integer_literal] = ACTIONS(640), + [aux_sym_string_literal_token1] = ACTIONS(640), + [sym_char_literal] = ACTIONS(640), + [anon_sym_true] = ACTIONS(642), + [anon_sym_false] = ACTIONS(642), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(642), + [sym_super] = ACTIONS(642), + [sym_crate] = ACTIONS(642), + [sym_metavariable] = ACTIONS(640), + [sym_raw_string_literal] = ACTIONS(640), + [sym_float_literal] = ACTIONS(640), + [sym_block_comment] = ACTIONS(3), + }, + [150] = { + [ts_builtin_sym_end] = ACTIONS(644), + [sym_identifier] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(644), + [anon_sym_macro_rules_BANG] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_u8] = ACTIONS(646), + [anon_sym_i8] = ACTIONS(646), + [anon_sym_u16] = ACTIONS(646), + [anon_sym_i16] = ACTIONS(646), + [anon_sym_u32] = ACTIONS(646), + [anon_sym_i32] = ACTIONS(646), + [anon_sym_u64] = ACTIONS(646), + [anon_sym_i64] = ACTIONS(646), + [anon_sym_u128] = ACTIONS(646), + [anon_sym_i128] = ACTIONS(646), + [anon_sym_isize] = ACTIONS(646), + [anon_sym_usize] = ACTIONS(646), + [anon_sym_f32] = ACTIONS(646), + [anon_sym_f64] = ACTIONS(646), + [anon_sym_bool] = ACTIONS(646), + [anon_sym_str] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_async] = ACTIONS(646), + [anon_sym_break] = ACTIONS(646), + [anon_sym_const] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_enum] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(646), + [anon_sym_for] = ACTIONS(646), + [anon_sym_if] = ACTIONS(646), + [anon_sym_impl] = ACTIONS(646), + [anon_sym_let] = ACTIONS(646), + [anon_sym_loop] = ACTIONS(646), + [anon_sym_match] = ACTIONS(646), + [anon_sym_mod] = ACTIONS(646), + [anon_sym_pub] = ACTIONS(646), + [anon_sym_return] = ACTIONS(646), + [anon_sym_static] = ACTIONS(646), + [anon_sym_struct] = ACTIONS(646), + [anon_sym_trait] = ACTIONS(646), + [anon_sym_type] = ACTIONS(646), + [anon_sym_union] = ACTIONS(646), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_use] = ACTIONS(646), + [anon_sym_while] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(644), + [anon_sym_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_SLASH_EQ] = ACTIONS(644), + [anon_sym_PERCENT_EQ] = ACTIONS(644), + [anon_sym_AMP_EQ] = ACTIONS(644), + [anon_sym_PIPE_EQ] = ACTIONS(644), + [anon_sym_CARET_EQ] = ACTIONS(644), + [anon_sym_LT_LT_EQ] = ACTIONS(644), + [anon_sym_GT_GT_EQ] = ACTIONS(644), + [anon_sym_yield] = ACTIONS(646), + [anon_sym_move] = ACTIONS(646), + [anon_sym_DOT] = ACTIONS(646), + [sym_integer_literal] = ACTIONS(644), + [aux_sym_string_literal_token1] = ACTIONS(644), + [sym_char_literal] = ACTIONS(644), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(644), + [sym_raw_string_literal] = ACTIONS(644), + [sym_float_literal] = ACTIONS(644), + [sym_block_comment] = ACTIONS(3), + }, + [151] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), @@ -32540,56 +32089,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(237), - [sym_if_let_expression] = STATE(237), - [sym_match_expression] = STATE(237), - [sym_while_expression] = STATE(237), - [sym_while_let_expression] = STATE(237), - [sym_loop_expression] = STATE(237), - [sym_for_expression] = STATE(237), - [sym_const_block] = STATE(237), - [sym_closure_expression] = STATE(772), + [152] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2516), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(237), - [sym_async_block] = STATE(237), - [sym_block] = STATE(237), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32610,19 +32159,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(612), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(614), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(616), - [anon_sym_if] = ACTIONS(618), - [anon_sym_loop] = ACTIONS(620), - [anon_sym_match] = ACTIONS(622), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(624), - [anon_sym_while] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -32646,53 +32195,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [153] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [154] = { + [ts_builtin_sym_end] = ACTIONS(648), + [sym_identifier] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_macro_rules_BANG] = ACTIONS(648), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(648), + [anon_sym_u8] = ACTIONS(650), + [anon_sym_i8] = ACTIONS(650), + [anon_sym_u16] = ACTIONS(650), + [anon_sym_i16] = ACTIONS(650), + [anon_sym_u32] = ACTIONS(650), + [anon_sym_i32] = ACTIONS(650), + [anon_sym_u64] = ACTIONS(650), + [anon_sym_i64] = ACTIONS(650), + [anon_sym_u128] = ACTIONS(650), + [anon_sym_i128] = ACTIONS(650), + [anon_sym_isize] = ACTIONS(650), + [anon_sym_usize] = ACTIONS(650), + [anon_sym_f32] = ACTIONS(650), + [anon_sym_f64] = ACTIONS(650), + [anon_sym_bool] = ACTIONS(650), + [anon_sym_str] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_as] = ACTIONS(650), + [anon_sym_async] = ACTIONS(650), + [anon_sym_break] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_enum] = ACTIONS(650), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_for] = ACTIONS(650), + [anon_sym_if] = ACTIONS(650), + [anon_sym_impl] = ACTIONS(650), + [anon_sym_let] = ACTIONS(650), + [anon_sym_loop] = ACTIONS(650), + [anon_sym_match] = ACTIONS(650), + [anon_sym_mod] = ACTIONS(650), + [anon_sym_pub] = ACTIONS(650), + [anon_sym_return] = ACTIONS(650), + [anon_sym_static] = ACTIONS(650), + [anon_sym_struct] = ACTIONS(650), + [anon_sym_trait] = ACTIONS(650), + [anon_sym_type] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_unsafe] = ACTIONS(650), + [anon_sym_use] = ACTIONS(650), + [anon_sym_while] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_extern] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(648), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(648), + [anon_sym_SLASH_EQ] = ACTIONS(648), + [anon_sym_PERCENT_EQ] = ACTIONS(648), + [anon_sym_AMP_EQ] = ACTIONS(648), + [anon_sym_PIPE_EQ] = ACTIONS(648), + [anon_sym_CARET_EQ] = ACTIONS(648), + [anon_sym_LT_LT_EQ] = ACTIONS(648), + [anon_sym_GT_GT_EQ] = ACTIONS(648), + [anon_sym_yield] = ACTIONS(650), + [anon_sym_move] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [sym_integer_literal] = ACTIONS(648), + [aux_sym_string_literal_token1] = ACTIONS(648), + [sym_char_literal] = ACTIONS(648), + [anon_sym_true] = ACTIONS(650), + [anon_sym_false] = ACTIONS(650), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_crate] = ACTIONS(650), + [sym_metavariable] = ACTIONS(648), + [sym_raw_string_literal] = ACTIONS(648), + [sym_float_literal] = ACTIONS(648), + [sym_block_comment] = ACTIONS(3), + }, + [155] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32732,7 +32493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -32752,53 +32513,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [156] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(234), + [sym_if_let_expression] = STATE(234), + [sym_match_expression] = STATE(234), + [sym_while_expression] = STATE(234), + [sym_while_let_expression] = STATE(234), + [sym_loop_expression] = STATE(234), + [sym_for_expression] = STATE(234), + [sym_const_block] = STATE(234), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2539), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(234), + [sym_async_block] = STATE(234), + [sym_block] = STATE(234), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(588), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(598), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [157] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32838,7 +32705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -32858,18 +32725,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(656), - [sym_identifier] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(656), - [anon_sym_macro_rules_BANG] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(656), + [158] = { + [ts_builtin_sym_end] = ACTIONS(652), + [sym_identifier] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_macro_rules_BANG] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_async] = ACTIONS(654), + [anon_sym_break] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_continue] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_fn] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_impl] = ACTIONS(654), + [anon_sym_let] = ACTIONS(654), + [anon_sym_loop] = ACTIONS(654), + [anon_sym_match] = ACTIONS(654), + [anon_sym_mod] = ACTIONS(654), + [anon_sym_pub] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_static] = ACTIONS(654), + [anon_sym_struct] = ACTIONS(654), + [anon_sym_trait] = ACTIONS(654), + [anon_sym_type] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_unsafe] = ACTIONS(654), + [anon_sym_use] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_extern] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_STAR_EQ] = ACTIONS(652), + [anon_sym_SLASH_EQ] = ACTIONS(652), + [anon_sym_PERCENT_EQ] = ACTIONS(652), + [anon_sym_AMP_EQ] = ACTIONS(652), + [anon_sym_PIPE_EQ] = ACTIONS(652), + [anon_sym_CARET_EQ] = ACTIONS(652), + [anon_sym_LT_LT_EQ] = ACTIONS(652), + [anon_sym_GT_GT_EQ] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(654), + [anon_sym_move] = ACTIONS(654), + [anon_sym_DOT] = ACTIONS(654), + [sym_integer_literal] = ACTIONS(652), + [aux_sym_string_literal_token1] = ACTIONS(652), + [sym_char_literal] = ACTIONS(652), + [anon_sym_true] = ACTIONS(654), + [anon_sym_false] = ACTIONS(654), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_metavariable] = ACTIONS(652), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), + [sym_block_comment] = ACTIONS(3), + }, + [159] = { + [ts_builtin_sym_end] = ACTIONS(656), + [sym_identifier] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_macro_rules_BANG] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(564), [anon_sym_u8] = ACTIONS(658), [anon_sym_i8] = ACTIONS(658), [anon_sym_u16] = ACTIONS(658), @@ -32888,7 +32861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(658), [anon_sym_char] = ACTIONS(658), [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_as] = ACTIONS(658), + [anon_sym_as] = ACTIONS(562), [anon_sym_async] = ACTIONS(658), [anon_sym_break] = ACTIONS(658), [anon_sym_const] = ACTIONS(658), @@ -32915,41 +32888,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(658), [anon_sym_POUND] = ACTIONS(656), [anon_sym_BANG] = ACTIONS(658), - [anon_sym_EQ] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(562), [anon_sym_extern] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), [anon_sym_COLON_COLON] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_AMP_AMP] = ACTIONS(656), - [anon_sym_PIPE_PIPE] = ACTIONS(656), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(656), - [anon_sym_BANG_EQ] = ACTIONS(656), - [anon_sym_LT_EQ] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(656), - [anon_sym_LT_LT] = ACTIONS(658), - [anon_sym_GT_GT] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(658), - [anon_sym_PLUS_EQ] = ACTIONS(656), - [anon_sym_DASH_EQ] = ACTIONS(656), - [anon_sym_STAR_EQ] = ACTIONS(656), - [anon_sym_SLASH_EQ] = ACTIONS(656), - [anon_sym_PERCENT_EQ] = ACTIONS(656), - [anon_sym_AMP_EQ] = ACTIONS(656), - [anon_sym_PIPE_EQ] = ACTIONS(656), - [anon_sym_CARET_EQ] = ACTIONS(656), - [anon_sym_LT_LT_EQ] = ACTIONS(656), - [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), [anon_sym_yield] = ACTIONS(658), [anon_sym_move] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(562), [sym_integer_literal] = ACTIONS(656), [aux_sym_string_literal_token1] = ACTIONS(656), [sym_char_literal] = ACTIONS(656), @@ -32964,53 +32937,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(656), [sym_block_comment] = ACTIONS(3), }, + [160] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1306), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [161] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1205), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33050,8 +33129,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -33071,55 +33150,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [162] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1069), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(234), + [sym_if_let_expression] = STATE(234), + [sym_match_expression] = STATE(234), + [sym_while_expression] = STATE(234), + [sym_while_let_expression] = STATE(234), + [sym_loop_expression] = STATE(234), + [sym_for_expression] = STATE(234), + [sym_const_block] = STATE(234), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2539), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(234), + [sym_async_block] = STATE(234), + [sym_block] = STATE(234), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(586), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -33140,24 +33219,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(588), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(590), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(598), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33283,218 +33362,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [164] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [165] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [166] = { [ts_builtin_sym_end] = ACTIONS(664), [sym_identifier] = ACTIONS(666), [anon_sym_SEMI] = ACTIONS(664), @@ -33600,53 +33467,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [165] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33686,8 +33553,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -33706,53 +33573,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [166] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33792,7 +33659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -33812,265 +33679,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1249), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [167] = { + [ts_builtin_sym_end] = ACTIONS(668), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_macro_rules_BANG] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(670), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_extern] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_COLON_COLON] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(668), + [anon_sym_DOT_DOT] = ACTIONS(670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(670), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(670), + [anon_sym_move] = ACTIONS(670), + [anon_sym_DOT] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(668), + [aux_sym_string_literal_token1] = ACTIONS(668), + [sym_char_literal] = ACTIONS(668), + [anon_sym_true] = ACTIONS(670), + [anon_sym_false] = ACTIONS(670), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(668), + [sym_raw_string_literal] = ACTIONS(668), + [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), }, - [170] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [168] = { + [ts_builtin_sym_end] = ACTIONS(672), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_macro_rules_BANG] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(674), + [anon_sym_i8] = ACTIONS(674), + [anon_sym_u16] = ACTIONS(674), + [anon_sym_i16] = ACTIONS(674), + [anon_sym_u32] = ACTIONS(674), + [anon_sym_i32] = ACTIONS(674), + [anon_sym_u64] = ACTIONS(674), + [anon_sym_i64] = ACTIONS(674), + [anon_sym_u128] = ACTIONS(674), + [anon_sym_i128] = ACTIONS(674), + [anon_sym_isize] = ACTIONS(674), + [anon_sym_usize] = ACTIONS(674), + [anon_sym_f32] = ACTIONS(674), + [anon_sym_f64] = ACTIONS(674), + [anon_sym_bool] = ACTIONS(674), + [anon_sym_str] = ACTIONS(674), + [anon_sym_char] = ACTIONS(674), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_async] = ACTIONS(674), + [anon_sym_break] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_continue] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(674), + [anon_sym_for] = ACTIONS(674), + [anon_sym_if] = ACTIONS(674), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_let] = ACTIONS(674), + [anon_sym_loop] = ACTIONS(674), + [anon_sym_match] = ACTIONS(674), + [anon_sym_mod] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(674), + [anon_sym_return] = ACTIONS(674), + [anon_sym_static] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(674), + [anon_sym_trait] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_unsafe] = ACTIONS(674), + [anon_sym_use] = ACTIONS(674), + [anon_sym_while] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT] = ACTIONS(674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_CARET] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(674), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_yield] = ACTIONS(674), + [anon_sym_move] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(672), + [aux_sym_string_literal_token1] = ACTIONS(672), + [sym_char_literal] = ACTIONS(672), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(672), + [sym_raw_string_literal] = ACTIONS(672), + [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), }, - [171] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [169] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34110,8 +33977,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -34130,268 +33997,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(340), + [170] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [ts_builtin_sym_end] = ACTIONS(668), - [sym_identifier] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(668), - [anon_sym_macro_rules_BANG] = ACTIONS(668), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(668), - [anon_sym_u8] = ACTIONS(670), - [anon_sym_i8] = ACTIONS(670), - [anon_sym_u16] = ACTIONS(670), - [anon_sym_i16] = ACTIONS(670), - [anon_sym_u32] = ACTIONS(670), - [anon_sym_i32] = ACTIONS(670), - [anon_sym_u64] = ACTIONS(670), - [anon_sym_i64] = ACTIONS(670), - [anon_sym_u128] = ACTIONS(670), - [anon_sym_i128] = ACTIONS(670), - [anon_sym_isize] = ACTIONS(670), - [anon_sym_usize] = ACTIONS(670), - [anon_sym_f32] = ACTIONS(670), - [anon_sym_f64] = ACTIONS(670), - [anon_sym_bool] = ACTIONS(670), - [anon_sym_str] = ACTIONS(670), - [anon_sym_char] = ACTIONS(670), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_as] = ACTIONS(670), - [anon_sym_async] = ACTIONS(670), - [anon_sym_break] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_impl] = ACTIONS(670), - [anon_sym_let] = ACTIONS(670), - [anon_sym_loop] = ACTIONS(670), - [anon_sym_match] = ACTIONS(670), - [anon_sym_mod] = ACTIONS(670), - [anon_sym_pub] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_static] = ACTIONS(670), - [anon_sym_struct] = ACTIONS(670), - [anon_sym_trait] = ACTIONS(670), - [anon_sym_type] = ACTIONS(670), - [anon_sym_union] = ACTIONS(670), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_use] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_extern] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_COLON_COLON] = ACTIONS(668), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [anon_sym_DOT_DOT] = ACTIONS(670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(668), - [anon_sym_PIPE_PIPE] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(668), - [anon_sym_BANG_EQ] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(668), - [anon_sym_DASH_EQ] = ACTIONS(668), - [anon_sym_STAR_EQ] = ACTIONS(668), - [anon_sym_SLASH_EQ] = ACTIONS(668), - [anon_sym_PERCENT_EQ] = ACTIONS(668), - [anon_sym_AMP_EQ] = ACTIONS(668), - [anon_sym_PIPE_EQ] = ACTIONS(668), - [anon_sym_CARET_EQ] = ACTIONS(668), - [anon_sym_LT_LT_EQ] = ACTIONS(668), - [anon_sym_GT_GT_EQ] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(670), - [anon_sym_move] = ACTIONS(670), - [anon_sym_DOT] = ACTIONS(670), - [sym_integer_literal] = ACTIONS(668), - [aux_sym_string_literal_token1] = ACTIONS(668), - [sym_char_literal] = ACTIONS(668), - [anon_sym_true] = ACTIONS(670), - [anon_sym_false] = ACTIONS(670), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(670), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym_metavariable] = ACTIONS(668), - [sym_raw_string_literal] = ACTIONS(668), - [sym_float_literal] = ACTIONS(668), - [sym_block_comment] = ACTIONS(3), - }, - [174] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(237), - [sym_if_let_expression] = STATE(237), - [sym_match_expression] = STATE(237), - [sym_while_expression] = STATE(237), - [sym_while_let_expression] = STATE(237), - [sym_loop_expression] = STATE(237), - [sym_for_expression] = STATE(237), - [sym_const_block] = STATE(237), - [sym_closure_expression] = STATE(772), + [171] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2516), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(237), - [sym_async_block] = STATE(237), - [sym_block] = STATE(237), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -34412,19 +34173,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(612), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(614), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(616), - [anon_sym_if] = ACTIONS(618), - [anon_sym_loop] = ACTIONS(620), - [anon_sym_match] = ACTIONS(622), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(624), - [anon_sym_while] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -34448,53 +34209,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [172] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34534,7 +34295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -34554,159 +34315,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), + [173] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [174] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34746,8 +34507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -34766,265 +34527,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [ts_builtin_sym_end] = ACTIONS(672), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_macro_rules_BANG] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(672), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_extern] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [anon_sym_DOT_DOT] = ACTIONS(674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(672), - [anon_sym_PIPE_PIPE] = ACTIONS(672), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(672), - [anon_sym_BANG_EQ] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(672), - [anon_sym_DASH_EQ] = ACTIONS(672), - [anon_sym_STAR_EQ] = ACTIONS(672), - [anon_sym_SLASH_EQ] = ACTIONS(672), - [anon_sym_PERCENT_EQ] = ACTIONS(672), - [anon_sym_AMP_EQ] = ACTIONS(672), - [anon_sym_PIPE_EQ] = ACTIONS(672), - [anon_sym_CARET_EQ] = ACTIONS(672), - [anon_sym_LT_LT_EQ] = ACTIONS(672), - [anon_sym_GT_GT_EQ] = ACTIONS(672), - [anon_sym_yield] = ACTIONS(674), - [anon_sym_move] = ACTIONS(674), - [anon_sym_DOT] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(672), - [aux_sym_string_literal_token1] = ACTIONS(672), - [sym_char_literal] = ACTIONS(672), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym_metavariable] = ACTIONS(672), - [sym_raw_string_literal] = ACTIONS(672), - [sym_float_literal] = ACTIONS(672), - [sym_block_comment] = ACTIONS(3), - }, - [179] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1127), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1952), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(1178), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(66), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), + [175] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35064,8 +34613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35084,113 +34633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [181] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), - [sym__expression] = STATE(1192), - [sym_macro_invocation] = STATE(772), - [sym_scoped_identifier] = STATE(799), - [sym_scoped_type_identifier_in_expression_position] = STATE(2223), - [sym_range_expression] = STATE(1053), - [sym_unary_expression] = STATE(772), - [sym_try_expression] = STATE(772), - [sym_reference_expression] = STATE(772), - [sym_binary_expression] = STATE(772), - [sym_assignment_expression] = STATE(772), - [sym_compound_assignment_expr] = STATE(772), - [sym_type_cast_expression] = STATE(772), - [sym_return_expression] = STATE(772), - [sym_yield_expression] = STATE(772), - [sym_call_expression] = STATE(772), - [sym_array_expression] = STATE(772), - [sym_parenthesized_expression] = STATE(772), - [sym_tuple_expression] = STATE(772), - [sym_unit_expression] = STATE(772), - [sym_struct_expression] = STATE(772), - [sym_if_expression] = STATE(772), - [sym_if_let_expression] = STATE(772), - [sym_match_expression] = STATE(772), - [sym_while_expression] = STATE(772), - [sym_while_let_expression] = STATE(772), - [sym_loop_expression] = STATE(772), - [sym_for_expression] = STATE(772), - [sym_const_block] = STATE(772), - [sym_closure_expression] = STATE(772), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2484), - [sym_break_expression] = STATE(772), - [sym_continue_expression] = STATE(772), - [sym_index_expression] = STATE(772), - [sym_await_expression] = STATE(772), - [sym_field_expression] = STATE(773), - [sym_unsafe_block] = STATE(772), - [sym_async_block] = STATE(772), - [sym_block] = STATE(772), - [sym__literal] = STATE(772), - [sym_string_literal] = STATE(1070), - [sym_boolean_literal] = STATE(1070), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [182] = { + [176] = { [ts_builtin_sym_end] = ACTIONS(676), [sym_identifier] = ACTIONS(678), [anon_sym_SEMI] = ACTIONS(676), @@ -35296,469 +34739,796 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(676), [sym_block_comment] = ACTIONS(3), }, - [183] = { - [sym_identifier] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_macro_rules_BANG] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(564), - [anon_sym_i8] = ACTIONS(564), - [anon_sym_u16] = ACTIONS(564), - [anon_sym_i16] = ACTIONS(564), - [anon_sym_u32] = ACTIONS(564), - [anon_sym_i32] = ACTIONS(564), - [anon_sym_u64] = ACTIONS(564), - [anon_sym_i64] = ACTIONS(564), - [anon_sym_u128] = ACTIONS(564), - [anon_sym_i128] = ACTIONS(564), - [anon_sym_isize] = ACTIONS(564), - [anon_sym_usize] = ACTIONS(564), - [anon_sym_f32] = ACTIONS(564), - [anon_sym_f64] = ACTIONS(564), - [anon_sym_bool] = ACTIONS(564), - [anon_sym_str] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_const] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_enum] = ACTIONS(564), - [anon_sym_fn] = ACTIONS(564), - [anon_sym_for] = ACTIONS(564), - [anon_sym_if] = ACTIONS(564), - [anon_sym_impl] = ACTIONS(564), - [anon_sym_let] = ACTIONS(564), - [anon_sym_loop] = ACTIONS(564), - [anon_sym_match] = ACTIONS(564), - [anon_sym_mod] = ACTIONS(564), - [anon_sym_pub] = ACTIONS(564), - [anon_sym_return] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_struct] = ACTIONS(564), - [anon_sym_trait] = ACTIONS(564), - [anon_sym_type] = ACTIONS(564), - [anon_sym_union] = ACTIONS(564), - [anon_sym_unsafe] = ACTIONS(564), - [anon_sym_use] = ACTIONS(564), - [anon_sym_while] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_move] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(564), - [sym_super] = ACTIONS(564), - [sym_crate] = ACTIONS(564), - [sym_metavariable] = ACTIONS(562), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), - [sym_block_comment] = ACTIONS(3), - }, - [184] = { - [sym_attribute_item] = STATE(196), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(1998), - [sym_variadic_parameter] = STATE(1998), - [sym_parameter] = STATE(1998), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1832), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2476), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1724), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [177] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [185] = { - [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(2058), - [sym_variadic_parameter] = STATE(2058), - [sym_parameter] = STATE(2058), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1822), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(758), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [178] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [186] = { - [sym_attribute_item] = STATE(196), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(1998), - [sym_variadic_parameter] = STATE(1998), - [sym_parameter] = STATE(1998), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1832), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [179] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(776), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [187] = { - [sym_attribute_item] = STATE(196), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(1998), - [sym_variadic_parameter] = STATE(1998), - [sym_parameter] = STATE(1998), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1832), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2476), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1724), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), + [180] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [181] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [182] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [183] = { + [sym_identifier] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_macro_rules_BANG] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_u8] = ACTIONS(658), + [anon_sym_i8] = ACTIONS(658), + [anon_sym_u16] = ACTIONS(658), + [anon_sym_i16] = ACTIONS(658), + [anon_sym_u32] = ACTIONS(658), + [anon_sym_i32] = ACTIONS(658), + [anon_sym_u64] = ACTIONS(658), + [anon_sym_i64] = ACTIONS(658), + [anon_sym_u128] = ACTIONS(658), + [anon_sym_i128] = ACTIONS(658), + [anon_sym_isize] = ACTIONS(658), + [anon_sym_usize] = ACTIONS(658), + [anon_sym_f32] = ACTIONS(658), + [anon_sym_f64] = ACTIONS(658), + [anon_sym_bool] = ACTIONS(658), + [anon_sym_str] = ACTIONS(658), + [anon_sym_char] = ACTIONS(658), + [anon_sym_SQUOTE] = ACTIONS(658), + [anon_sym_as] = ACTIONS(562), + [anon_sym_async] = ACTIONS(658), + [anon_sym_break] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_continue] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_enum] = ACTIONS(658), + [anon_sym_fn] = ACTIONS(658), + [anon_sym_for] = ACTIONS(658), + [anon_sym_if] = ACTIONS(658), + [anon_sym_impl] = ACTIONS(658), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(658), + [anon_sym_match] = ACTIONS(658), + [anon_sym_mod] = ACTIONS(658), + [anon_sym_pub] = ACTIONS(658), + [anon_sym_return] = ACTIONS(658), + [anon_sym_static] = ACTIONS(658), + [anon_sym_struct] = ACTIONS(658), + [anon_sym_trait] = ACTIONS(658), + [anon_sym_type] = ACTIONS(658), + [anon_sym_union] = ACTIONS(658), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_use] = ACTIONS(658), + [anon_sym_while] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_extern] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(658), + [anon_sym_move] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(562), + [sym_integer_literal] = ACTIONS(656), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(656), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(658), + [sym_super] = ACTIONS(658), + [sym_crate] = ACTIONS(658), + [sym_metavariable] = ACTIONS(656), + [sym_raw_string_literal] = ACTIONS(656), + [sym_float_literal] = ACTIONS(656), + [sym_block_comment] = ACTIONS(3), + }, + [184] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(1940), + [sym_variadic_parameter] = STATE(1940), + [sym_parameter] = STATE(1940), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1759), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), [anon_sym_i8] = ACTIONS(690), [anon_sym_u16] = ACTIONS(690), @@ -35787,7 +35557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(712), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), @@ -35813,53 +35583,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [188] = { + [185] = { [sym_attribute_item] = STATE(196), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(1998), - [sym_variadic_parameter] = STATE(1998), - [sym_parameter] = STATE(1998), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1832), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2476), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1724), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2073), + [sym_variadic_parameter] = STATE(2073), + [sym_parameter] = STATE(2073), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1808), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(754), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [186] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(1940), + [sym_variadic_parameter] = STATE(1940), + [sym_parameter] = STATE(1940), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1759), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_RPAREN] = ACTIONS(772), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -35890,7 +35763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(774), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), @@ -35916,50 +35789,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [189] = { + [187] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(1940), + [sym_variadic_parameter] = STATE(1940), + [sym_parameter] = STATE(1940), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1759), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [188] = { [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(2227), - [sym_variadic_parameter] = STATE(2227), - [sym_parameter] = STATE(2227), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2037), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(1940), + [sym_variadic_parameter] = STATE(1940), + [sym_parameter] = STATE(1940), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(754), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [189] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(786), @@ -36019,49 +36098,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [190] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(2227), - [sym_variadic_parameter] = STATE(2227), - [sym_parameter] = STATE(2227), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2037), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(790), @@ -36121,49 +36200,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(2227), - [sym_variadic_parameter] = STATE(2227), - [sym_parameter] = STATE(2227), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2037), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(792), @@ -36223,49 +36302,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(2227), - [sym_variadic_parameter] = STATE(2227), - [sym_parameter] = STATE(2227), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2037), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(794), @@ -36325,49 +36404,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(2227), - [sym_variadic_parameter] = STATE(2227), - [sym_parameter] = STATE(2227), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2037), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(796), @@ -36427,49 +36506,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [194] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(2227), - [sym_variadic_parameter] = STATE(2227), - [sym_parameter] = STATE(2227), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2037), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(798), @@ -36529,49 +36608,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [195] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(2227), - [sym_variadic_parameter] = STATE(2227), - [sym_parameter] = STATE(2227), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2037), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -36630,48 +36709,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(1936), - [sym_variadic_parameter] = STATE(1936), - [sym_parameter] = STATE(1936), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1844), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2147), + [sym_variadic_parameter] = STATE(2147), + [sym_parameter] = STATE(2147), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1780), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -36729,48 +36808,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(2293), - [sym_variadic_parameter] = STATE(2293), - [sym_parameter] = STATE(2293), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1908), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(1987), + [sym_variadic_parameter] = STATE(1987), + [sym_parameter] = STATE(1987), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1813), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -36828,48 +36907,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [198] = { - [sym_function_modifiers] = STATE(2404), - [sym_self_parameter] = STATE(2117), - [sym_variadic_parameter] = STATE(2117), - [sym_parameter] = STATE(2117), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1807), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2265), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2172), + [sym_variadic_parameter] = STATE(2172), + [sym_parameter] = STATE(2172), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2063), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -36927,45 +37006,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2075), - [sym_bracketed_type] = STATE(2478), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2479), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1792), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(2501), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2502), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1834), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(806), [anon_sym_LPAREN] = ACTIONS(808), [anon_sym_LBRACK] = ACTIONS(686), @@ -37024,45 +37103,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1802), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2476), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1784), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(834), @@ -37121,45 +37200,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1802), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2476), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1784), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(844), @@ -37218,45 +37297,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1802), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2476), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1784), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(846), @@ -37411,82 +37490,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1391), - [sym_bracketed_type] = STATE(2478), - [sym_lifetime] = STATE(583), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2479), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1467), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(600), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(814), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(816), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(854), [anon_sym_DOT_DOT] = ACTIONS(828), @@ -37497,91 +37576,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(830), - [sym_super] = ACTIONS(830), - [sym_crate] = ACTIONS(830), - [sym_metavariable] = ACTIONS(832), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1383), - [sym_bracketed_type] = STATE(2478), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2479), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1539), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1463), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(814), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(816), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), @@ -37592,93 +37671,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(830), - [sym_super] = ACTIONS(830), - [sym_crate] = ACTIONS(830), - [sym_metavariable] = ACTIONS(832), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1383), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1463), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(599), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), + [sym_mutable_specifier] = ACTIONS(856), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -37687,54 +37766,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(858), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [207] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1391), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(591), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1467), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(600), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -37759,11 +37838,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(860), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(862), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), @@ -37771,9 +37850,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(862), + [sym_mutable_specifier] = ACTIONS(866), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -37782,7 +37861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(864), + [sym_self] = ACTIONS(768), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -37791,45 +37870,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [208] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1383), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2476), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1463), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -37877,7 +37956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), + [sym_self] = ACTIONS(868), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -37886,82 +37965,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [209] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1383), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2476), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1463), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(860), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(862), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), @@ -37972,54 +38051,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(866), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(870), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [210] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1383), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1463), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -38044,11 +38123,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(860), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(862), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), @@ -38056,7 +38135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), @@ -38067,7 +38146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(868), + [sym_self] = ACTIONS(768), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -38076,45 +38155,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [211] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1391), - [sym_bracketed_type] = STATE(2472), - [sym_lifetime] = STATE(583), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2473), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1579), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1467), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(599), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -38139,11 +38218,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(860), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(862), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), @@ -38151,9 +38230,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(870), + [sym_mutable_specifier] = ACTIONS(872), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -38162,7 +38241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), + [sym_self] = ACTIONS(874), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -38171,84 +38250,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [212] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1391), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(583), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2476), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1467), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2501), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2502), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_u8] = ACTIONS(812), + [anon_sym_i8] = ACTIONS(812), + [anon_sym_u16] = ACTIONS(812), + [anon_sym_i16] = ACTIONS(812), + [anon_sym_u32] = ACTIONS(812), + [anon_sym_i32] = ACTIONS(812), + [anon_sym_u64] = ACTIONS(812), + [anon_sym_i64] = ACTIONS(812), + [anon_sym_u128] = ACTIONS(812), + [anon_sym_i128] = ACTIONS(812), + [anon_sym_isize] = ACTIONS(812), + [anon_sym_usize] = ACTIONS(812), + [anon_sym_f32] = ACTIONS(812), + [anon_sym_f64] = ACTIONS(812), + [anon_sym_bool] = ACTIONS(812), + [anon_sym_str] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(814), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(816), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(820), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym_AMP] = ACTIONS(824), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(872), + [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -38257,93 +38336,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_crate] = ACTIONS(830), + [sym_metavariable] = ACTIONS(832), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [213] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1391), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(591), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2476), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier] = STATE(1485), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1467), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2501), + [sym_lifetime] = STATE(600), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2502), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(812), + [anon_sym_i8] = ACTIONS(812), + [anon_sym_u16] = ACTIONS(812), + [anon_sym_i16] = ACTIONS(812), + [anon_sym_u32] = ACTIONS(812), + [anon_sym_i32] = ACTIONS(812), + [anon_sym_u64] = ACTIONS(812), + [anon_sym_i64] = ACTIONS(812), + [anon_sym_u128] = ACTIONS(812), + [anon_sym_i128] = ACTIONS(812), + [anon_sym_isize] = ACTIONS(812), + [anon_sym_usize] = ACTIONS(812), + [anon_sym_f32] = ACTIONS(812), + [anon_sym_f64] = ACTIONS(812), + [anon_sym_bool] = ACTIONS(812), + [anon_sym_str] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(814), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(816), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(820), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym_AMP] = ACTIONS(824), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(874), + [sym_mutable_specifier] = ACTIONS(876), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -38352,37 +38431,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_crate] = ACTIONS(830), + [sym_metavariable] = ACTIONS(832), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [214] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1462), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1471), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(878), [anon_sym_LPAREN] = ACTIONS(880), [anon_sym_LBRACE] = ACTIONS(880), @@ -38447,680 +38526,680 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [215] = { - [sym_else_clause] = STATE(232), - [sym_identifier] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LBRACK] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_QMARK] = ACTIONS(496), - [anon_sym_u8] = ACTIONS(498), - [anon_sym_i8] = ACTIONS(498), - [anon_sym_u16] = ACTIONS(498), - [anon_sym_i16] = ACTIONS(498), - [anon_sym_u32] = ACTIONS(498), - [anon_sym_i32] = ACTIONS(498), - [anon_sym_u64] = ACTIONS(498), - [anon_sym_i64] = ACTIONS(498), - [anon_sym_u128] = ACTIONS(498), - [anon_sym_i128] = ACTIONS(498), - [anon_sym_isize] = ACTIONS(498), - [anon_sym_usize] = ACTIONS(498), - [anon_sym_f32] = ACTIONS(498), - [anon_sym_f64] = ACTIONS(498), - [anon_sym_bool] = ACTIONS(498), - [anon_sym_str] = ACTIONS(498), - [anon_sym_char] = ACTIONS(498), - [anon_sym_as] = ACTIONS(498), - [anon_sym_const] = ACTIONS(498), - [anon_sym_default] = ACTIONS(498), - [anon_sym_union] = ACTIONS(498), - [anon_sym_POUND] = ACTIONS(496), - [anon_sym_EQ] = ACTIONS(498), - [anon_sym_COMMA] = ACTIONS(496), - [anon_sym_ref] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(498), - [anon_sym_GT] = ACTIONS(498), - [anon_sym_COLON_COLON] = ACTIONS(496), - [anon_sym__] = ACTIONS(498), - [anon_sym_AMP] = ACTIONS(498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(496), - [sym_mutable_specifier] = ACTIONS(498), - [anon_sym_DOT_DOT] = ACTIONS(498), - [anon_sym_DOT_DOT_EQ] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE_PIPE] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(498), - [anon_sym_EQ_EQ] = ACTIONS(496), - [anon_sym_BANG_EQ] = ACTIONS(496), - [anon_sym_LT_EQ] = ACTIONS(496), - [anon_sym_GT_EQ] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(498), - [anon_sym_GT_GT] = ACTIONS(498), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_PERCENT] = ACTIONS(498), - [anon_sym_PLUS_EQ] = ACTIONS(496), - [anon_sym_DASH_EQ] = ACTIONS(496), - [anon_sym_STAR_EQ] = ACTIONS(496), - [anon_sym_SLASH_EQ] = ACTIONS(496), - [anon_sym_PERCENT_EQ] = ACTIONS(496), - [anon_sym_AMP_EQ] = ACTIONS(496), - [anon_sym_PIPE_EQ] = ACTIONS(496), - [anon_sym_CARET_EQ] = ACTIONS(496), - [anon_sym_LT_LT_EQ] = ACTIONS(496), - [anon_sym_GT_GT_EQ] = ACTIONS(496), + [sym_else_clause] = STATE(235), + [sym_identifier] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u128] = ACTIONS(502), + [anon_sym_i128] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_str] = ACTIONS(502), + [anon_sym_char] = ACTIONS(502), + [anon_sym_as] = ACTIONS(502), + [anon_sym_const] = ACTIONS(502), + [anon_sym_default] = ACTIONS(502), + [anon_sym_union] = ACTIONS(502), + [anon_sym_POUND] = ACTIONS(500), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(500), + [anon_sym_ref] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_COLON_COLON] = ACTIONS(500), + [anon_sym__] = ACTIONS(502), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(500), + [sym_mutable_specifier] = ACTIONS(502), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(500), + [anon_sym_PIPE_PIPE] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(500), + [anon_sym_BANG_EQ] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_PERCENT] = ACTIONS(502), + [anon_sym_PLUS_EQ] = ACTIONS(500), + [anon_sym_DASH_EQ] = ACTIONS(500), + [anon_sym_STAR_EQ] = ACTIONS(500), + [anon_sym_SLASH_EQ] = ACTIONS(500), + [anon_sym_PERCENT_EQ] = ACTIONS(500), + [anon_sym_AMP_EQ] = ACTIONS(500), + [anon_sym_PIPE_EQ] = ACTIONS(500), + [anon_sym_CARET_EQ] = ACTIONS(500), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_GT_GT_EQ] = ACTIONS(500), [anon_sym_else] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(498), - [sym_integer_literal] = ACTIONS(496), - [aux_sym_string_literal_token1] = ACTIONS(496), - [sym_char_literal] = ACTIONS(496), - [anon_sym_true] = ACTIONS(498), - [anon_sym_false] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(502), + [sym_integer_literal] = ACTIONS(500), + [aux_sym_string_literal_token1] = ACTIONS(500), + [sym_char_literal] = ACTIONS(500), + [anon_sym_true] = ACTIONS(502), + [anon_sym_false] = ACTIONS(502), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(498), - [sym_super] = ACTIONS(498), - [sym_crate] = ACTIONS(498), - [sym_metavariable] = ACTIONS(496), - [sym_raw_string_literal] = ACTIONS(496), - [sym_float_literal] = ACTIONS(496), + [sym_self] = ACTIONS(502), + [sym_super] = ACTIONS(502), + [sym_crate] = ACTIONS(502), + [sym_metavariable] = ACTIONS(500), + [sym_raw_string_literal] = ACTIONS(500), + [sym_float_literal] = ACTIONS(500), [sym_block_comment] = ACTIONS(3), }, [216] = { - [sym_else_clause] = STATE(242), - [sym_identifier] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(488), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(488), - [anon_sym_u8] = ACTIONS(490), - [anon_sym_i8] = ACTIONS(490), - [anon_sym_u16] = ACTIONS(490), - [anon_sym_i16] = ACTIONS(490), - [anon_sym_u32] = ACTIONS(490), - [anon_sym_i32] = ACTIONS(490), - [anon_sym_u64] = ACTIONS(490), - [anon_sym_i64] = ACTIONS(490), - [anon_sym_u128] = ACTIONS(490), - [anon_sym_i128] = ACTIONS(490), - [anon_sym_isize] = ACTIONS(490), - [anon_sym_usize] = ACTIONS(490), - [anon_sym_f32] = ACTIONS(490), - [anon_sym_f64] = ACTIONS(490), - [anon_sym_bool] = ACTIONS(490), - [anon_sym_str] = ACTIONS(490), - [anon_sym_char] = ACTIONS(490), - [anon_sym_as] = ACTIONS(490), - [anon_sym_const] = ACTIONS(490), - [anon_sym_default] = ACTIONS(490), - [anon_sym_union] = ACTIONS(490), - [anon_sym_POUND] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(490), - [anon_sym_COMMA] = ACTIONS(488), - [anon_sym_ref] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_GT] = ACTIONS(490), - [anon_sym_COLON_COLON] = ACTIONS(488), - [anon_sym__] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(490), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), - [sym_mutable_specifier] = ACTIONS(490), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(488), - [anon_sym_PIPE_PIPE] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_CARET] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(488), - [anon_sym_BANG_EQ] = ACTIONS(488), - [anon_sym_LT_EQ] = ACTIONS(488), - [anon_sym_GT_EQ] = ACTIONS(488), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_PERCENT] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(488), - [anon_sym_DASH_EQ] = ACTIONS(488), - [anon_sym_STAR_EQ] = ACTIONS(488), - [anon_sym_SLASH_EQ] = ACTIONS(488), - [anon_sym_PERCENT_EQ] = ACTIONS(488), - [anon_sym_AMP_EQ] = ACTIONS(488), - [anon_sym_PIPE_EQ] = ACTIONS(488), - [anon_sym_CARET_EQ] = ACTIONS(488), - [anon_sym_LT_LT_EQ] = ACTIONS(488), - [anon_sym_GT_GT_EQ] = ACTIONS(488), + [sym_else_clause] = STATE(241), + [sym_identifier] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(394), + [anon_sym_RBRACE] = ACTIONS(394), + [anon_sym_LBRACK] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(396), + [anon_sym_i8] = ACTIONS(396), + [anon_sym_u16] = ACTIONS(396), + [anon_sym_i16] = ACTIONS(396), + [anon_sym_u32] = ACTIONS(396), + [anon_sym_i32] = ACTIONS(396), + [anon_sym_u64] = ACTIONS(396), + [anon_sym_i64] = ACTIONS(396), + [anon_sym_u128] = ACTIONS(396), + [anon_sym_i128] = ACTIONS(396), + [anon_sym_isize] = ACTIONS(396), + [anon_sym_usize] = ACTIONS(396), + [anon_sym_f32] = ACTIONS(396), + [anon_sym_f64] = ACTIONS(396), + [anon_sym_bool] = ACTIONS(396), + [anon_sym_str] = ACTIONS(396), + [anon_sym_char] = ACTIONS(396), + [anon_sym_as] = ACTIONS(396), + [anon_sym_const] = ACTIONS(396), + [anon_sym_default] = ACTIONS(396), + [anon_sym_union] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(394), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(394), + [anon_sym_ref] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_COLON_COLON] = ACTIONS(394), + [anon_sym__] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(394), + [sym_mutable_specifier] = ACTIONS(396), + [anon_sym_DOT_DOT] = ACTIONS(396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(394), + [anon_sym_PIPE_PIPE] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(394), + [anon_sym_BANG_EQ] = ACTIONS(394), + [anon_sym_LT_EQ] = ACTIONS(394), + [anon_sym_GT_EQ] = ACTIONS(394), + [anon_sym_LT_LT] = ACTIONS(396), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_PLUS_EQ] = ACTIONS(394), + [anon_sym_DASH_EQ] = ACTIONS(394), + [anon_sym_STAR_EQ] = ACTIONS(394), + [anon_sym_SLASH_EQ] = ACTIONS(394), + [anon_sym_PERCENT_EQ] = ACTIONS(394), + [anon_sym_AMP_EQ] = ACTIONS(394), + [anon_sym_PIPE_EQ] = ACTIONS(394), + [anon_sym_CARET_EQ] = ACTIONS(394), + [anon_sym_LT_LT_EQ] = ACTIONS(394), + [anon_sym_GT_GT_EQ] = ACTIONS(394), [anon_sym_else] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(490), - [sym_integer_literal] = ACTIONS(488), - [aux_sym_string_literal_token1] = ACTIONS(488), - [sym_char_literal] = ACTIONS(488), - [anon_sym_true] = ACTIONS(490), - [anon_sym_false] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(396), + [sym_integer_literal] = ACTIONS(394), + [aux_sym_string_literal_token1] = ACTIONS(394), + [sym_char_literal] = ACTIONS(394), + [anon_sym_true] = ACTIONS(396), + [anon_sym_false] = ACTIONS(396), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(490), - [sym_super] = ACTIONS(490), - [sym_crate] = ACTIONS(490), - [sym_metavariable] = ACTIONS(488), - [sym_raw_string_literal] = ACTIONS(488), - [sym_float_literal] = ACTIONS(488), + [sym_self] = ACTIONS(396), + [sym_super] = ACTIONS(396), + [sym_crate] = ACTIONS(396), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(394), + [sym_float_literal] = ACTIONS(394), [sym_block_comment] = ACTIONS(3), }, [217] = { - [sym_identifier] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_as] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_ref] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym__] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [sym_mutable_specifier] = ACTIONS(556), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_else] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), + [sym_identifier] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(550), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_POUND] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_ref] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym__] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(550), + [sym_mutable_specifier] = ACTIONS(552), + [anon_sym_DOT_DOT] = ACTIONS(552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_AMP_AMP] = ACTIONS(550), + [anon_sym_PIPE_PIPE] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(552), + [anon_sym_CARET] = ACTIONS(552), + [anon_sym_EQ_EQ] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(552), + [anon_sym_SLASH] = ACTIONS(552), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_PLUS_EQ] = ACTIONS(550), + [anon_sym_DASH_EQ] = ACTIONS(550), + [anon_sym_STAR_EQ] = ACTIONS(550), + [anon_sym_SLASH_EQ] = ACTIONS(550), + [anon_sym_PERCENT_EQ] = ACTIONS(550), + [anon_sym_AMP_EQ] = ACTIONS(550), + [anon_sym_PIPE_EQ] = ACTIONS(550), + [anon_sym_CARET_EQ] = ACTIONS(550), + [anon_sym_LT_LT_EQ] = ACTIONS(550), + [anon_sym_GT_GT_EQ] = ACTIONS(550), + [anon_sym_else] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(550), + [aux_sym_string_literal_token1] = ACTIONS(550), + [sym_char_literal] = ACTIONS(550), + [anon_sym_true] = ACTIONS(552), + [anon_sym_false] = ACTIONS(552), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(550), + [sym_raw_string_literal] = ACTIONS(550), + [sym_float_literal] = ACTIONS(550), [sym_block_comment] = ACTIONS(3), }, [218] = { - [sym_identifier] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(530), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(530), - [anon_sym_u8] = ACTIONS(532), - [anon_sym_i8] = ACTIONS(532), - [anon_sym_u16] = ACTIONS(532), - [anon_sym_i16] = ACTIONS(532), - [anon_sym_u32] = ACTIONS(532), - [anon_sym_i32] = ACTIONS(532), - [anon_sym_u64] = ACTIONS(532), - [anon_sym_i64] = ACTIONS(532), - [anon_sym_u128] = ACTIONS(532), - [anon_sym_i128] = ACTIONS(532), - [anon_sym_isize] = ACTIONS(532), - [anon_sym_usize] = ACTIONS(532), - [anon_sym_f32] = ACTIONS(532), - [anon_sym_f64] = ACTIONS(532), - [anon_sym_bool] = ACTIONS(532), - [anon_sym_str] = ACTIONS(532), - [anon_sym_char] = ACTIONS(532), - [anon_sym_as] = ACTIONS(532), - [anon_sym_const] = ACTIONS(532), - [anon_sym_default] = ACTIONS(532), - [anon_sym_union] = ACTIONS(532), - [anon_sym_POUND] = ACTIONS(530), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(530), - [anon_sym_ref] = ACTIONS(532), - [anon_sym_LT] = ACTIONS(532), - [anon_sym_GT] = ACTIONS(532), - [anon_sym_COLON_COLON] = ACTIONS(530), - [anon_sym__] = ACTIONS(532), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(530), - [sym_mutable_specifier] = ACTIONS(532), - [anon_sym_DOT_DOT] = ACTIONS(532), - [anon_sym_DOT_DOT_EQ] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_CARET] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ] = ACTIONS(530), - [anon_sym_LT_EQ] = ACTIONS(530), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(532), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_SLASH] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(532), - [anon_sym_PLUS_EQ] = ACTIONS(530), - [anon_sym_DASH_EQ] = ACTIONS(530), - [anon_sym_STAR_EQ] = ACTIONS(530), - [anon_sym_SLASH_EQ] = ACTIONS(530), - [anon_sym_PERCENT_EQ] = ACTIONS(530), - [anon_sym_AMP_EQ] = ACTIONS(530), - [anon_sym_PIPE_EQ] = ACTIONS(530), - [anon_sym_CARET_EQ] = ACTIONS(530), - [anon_sym_LT_LT_EQ] = ACTIONS(530), - [anon_sym_GT_GT_EQ] = ACTIONS(530), - [anon_sym_else] = ACTIONS(532), - [anon_sym_DOT] = ACTIONS(532), - [sym_integer_literal] = ACTIONS(530), - [aux_sym_string_literal_token1] = ACTIONS(530), - [sym_char_literal] = ACTIONS(530), - [anon_sym_true] = ACTIONS(532), - [anon_sym_false] = ACTIONS(532), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(532), - [sym_super] = ACTIONS(532), - [sym_crate] = ACTIONS(532), - [sym_metavariable] = ACTIONS(530), - [sym_raw_string_literal] = ACTIONS(530), - [sym_float_literal] = ACTIONS(530), + [sym_identifier] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u8] = ACTIONS(526), + [anon_sym_i8] = ACTIONS(526), + [anon_sym_u16] = ACTIONS(526), + [anon_sym_i16] = ACTIONS(526), + [anon_sym_u32] = ACTIONS(526), + [anon_sym_i32] = ACTIONS(526), + [anon_sym_u64] = ACTIONS(526), + [anon_sym_i64] = ACTIONS(526), + [anon_sym_u128] = ACTIONS(526), + [anon_sym_i128] = ACTIONS(526), + [anon_sym_isize] = ACTIONS(526), + [anon_sym_usize] = ACTIONS(526), + [anon_sym_f32] = ACTIONS(526), + [anon_sym_f64] = ACTIONS(526), + [anon_sym_bool] = ACTIONS(526), + [anon_sym_str] = ACTIONS(526), + [anon_sym_char] = ACTIONS(526), + [anon_sym_as] = ACTIONS(526), + [anon_sym_const] = ACTIONS(526), + [anon_sym_default] = ACTIONS(526), + [anon_sym_union] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(524), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(524), + [anon_sym_ref] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(524), + [anon_sym__] = ACTIONS(526), + [anon_sym_AMP] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(524), + [sym_mutable_specifier] = ACTIONS(526), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_AMP_AMP] = ACTIONS(524), + [anon_sym_PIPE_PIPE] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_EQ_EQ] = ACTIONS(524), + [anon_sym_BANG_EQ] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(526), + [anon_sym_GT_GT] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_PLUS_EQ] = ACTIONS(524), + [anon_sym_DASH_EQ] = ACTIONS(524), + [anon_sym_STAR_EQ] = ACTIONS(524), + [anon_sym_SLASH_EQ] = ACTIONS(524), + [anon_sym_PERCENT_EQ] = ACTIONS(524), + [anon_sym_AMP_EQ] = ACTIONS(524), + [anon_sym_PIPE_EQ] = ACTIONS(524), + [anon_sym_CARET_EQ] = ACTIONS(524), + [anon_sym_LT_LT_EQ] = ACTIONS(524), + [anon_sym_GT_GT_EQ] = ACTIONS(524), + [anon_sym_else] = ACTIONS(526), + [anon_sym_DOT] = ACTIONS(526), + [sym_integer_literal] = ACTIONS(524), + [aux_sym_string_literal_token1] = ACTIONS(524), + [sym_char_literal] = ACTIONS(524), + [anon_sym_true] = ACTIONS(526), + [anon_sym_false] = ACTIONS(526), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_crate] = ACTIONS(526), + [sym_metavariable] = ACTIONS(524), + [sym_raw_string_literal] = ACTIONS(524), + [sym_float_literal] = ACTIONS(524), [sym_block_comment] = ACTIONS(3), }, [219] = { - [sym_identifier] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_QMARK] = ACTIONS(540), - [anon_sym_u8] = ACTIONS(542), - [anon_sym_i8] = ACTIONS(542), - [anon_sym_u16] = ACTIONS(542), - [anon_sym_i16] = ACTIONS(542), - [anon_sym_u32] = ACTIONS(542), - [anon_sym_i32] = ACTIONS(542), - [anon_sym_u64] = ACTIONS(542), - [anon_sym_i64] = ACTIONS(542), - [anon_sym_u128] = ACTIONS(542), - [anon_sym_i128] = ACTIONS(542), - [anon_sym_isize] = ACTIONS(542), - [anon_sym_usize] = ACTIONS(542), - [anon_sym_f32] = ACTIONS(542), - [anon_sym_f64] = ACTIONS(542), - [anon_sym_bool] = ACTIONS(542), - [anon_sym_str] = ACTIONS(542), - [anon_sym_char] = ACTIONS(542), - [anon_sym_as] = ACTIONS(542), - [anon_sym_const] = ACTIONS(542), - [anon_sym_default] = ACTIONS(542), - [anon_sym_union] = ACTIONS(542), - [anon_sym_POUND] = ACTIONS(540), - [anon_sym_EQ] = ACTIONS(542), - [anon_sym_COMMA] = ACTIONS(540), - [anon_sym_ref] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_COLON_COLON] = ACTIONS(540), - [anon_sym__] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(540), - [sym_mutable_specifier] = ACTIONS(542), - [anon_sym_DOT_DOT] = ACTIONS(542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(540), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(540), - [anon_sym_BANG_EQ] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(540), - [anon_sym_GT_EQ] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_PLUS_EQ] = ACTIONS(540), - [anon_sym_DASH_EQ] = ACTIONS(540), - [anon_sym_STAR_EQ] = ACTIONS(540), - [anon_sym_SLASH_EQ] = ACTIONS(540), - [anon_sym_PERCENT_EQ] = ACTIONS(540), - [anon_sym_AMP_EQ] = ACTIONS(540), - [anon_sym_PIPE_EQ] = ACTIONS(540), - [anon_sym_CARET_EQ] = ACTIONS(540), - [anon_sym_LT_LT_EQ] = ACTIONS(540), - [anon_sym_GT_GT_EQ] = ACTIONS(540), - [anon_sym_else] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(542), - [sym_integer_literal] = ACTIONS(540), - [aux_sym_string_literal_token1] = ACTIONS(540), - [sym_char_literal] = ACTIONS(540), - [anon_sym_true] = ACTIONS(542), - [anon_sym_false] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(542), - [sym_super] = ACTIONS(542), - [sym_crate] = ACTIONS(542), - [sym_metavariable] = ACTIONS(540), - [sym_raw_string_literal] = ACTIONS(540), - [sym_float_literal] = ACTIONS(540), + [sym_identifier] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_str] = ACTIONS(546), + [anon_sym_char] = ACTIONS(546), + [anon_sym_as] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_union] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(544), + [anon_sym_ref] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym__] = ACTIONS(546), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(544), + [sym_mutable_specifier] = ACTIONS(546), + [anon_sym_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(546), + [anon_sym_EQ_EQ] = ACTIONS(544), + [anon_sym_BANG_EQ] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(544), + [anon_sym_LT_LT] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_PLUS_EQ] = ACTIONS(544), + [anon_sym_DASH_EQ] = ACTIONS(544), + [anon_sym_STAR_EQ] = ACTIONS(544), + [anon_sym_SLASH_EQ] = ACTIONS(544), + [anon_sym_PERCENT_EQ] = ACTIONS(544), + [anon_sym_AMP_EQ] = ACTIONS(544), + [anon_sym_PIPE_EQ] = ACTIONS(544), + [anon_sym_CARET_EQ] = ACTIONS(544), + [anon_sym_LT_LT_EQ] = ACTIONS(544), + [anon_sym_GT_GT_EQ] = ACTIONS(544), + [anon_sym_else] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [sym_integer_literal] = ACTIONS(544), + [aux_sym_string_literal_token1] = ACTIONS(544), + [sym_char_literal] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(546), + [sym_super] = ACTIONS(546), + [sym_crate] = ACTIONS(546), + [sym_metavariable] = ACTIONS(544), + [sym_raw_string_literal] = ACTIONS(544), + [sym_float_literal] = ACTIONS(544), [sym_block_comment] = ACTIONS(3), }, [220] = { - [sym_identifier] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_u8] = ACTIONS(600), - [anon_sym_i8] = ACTIONS(600), - [anon_sym_u16] = ACTIONS(600), - [anon_sym_i16] = ACTIONS(600), - [anon_sym_u32] = ACTIONS(600), - [anon_sym_i32] = ACTIONS(600), - [anon_sym_u64] = ACTIONS(600), - [anon_sym_i64] = ACTIONS(600), - [anon_sym_u128] = ACTIONS(600), - [anon_sym_i128] = ACTIONS(600), - [anon_sym_isize] = ACTIONS(600), - [anon_sym_usize] = ACTIONS(600), - [anon_sym_f32] = ACTIONS(600), - [anon_sym_f64] = ACTIONS(600), - [anon_sym_bool] = ACTIONS(600), - [anon_sym_str] = ACTIONS(600), - [anon_sym_char] = ACTIONS(600), - [anon_sym_as] = ACTIONS(600), - [anon_sym_const] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_union] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(598), - [anon_sym_ref] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(598), - [anon_sym__] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [sym_mutable_specifier] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_PIPE] = ACTIONS(600), - [anon_sym_CARET] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(598), - [anon_sym_BANG_EQ] = ACTIONS(598), - [anon_sym_LT_EQ] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(598), - [anon_sym_DASH_EQ] = ACTIONS(598), - [anon_sym_STAR_EQ] = ACTIONS(598), - [anon_sym_SLASH_EQ] = ACTIONS(598), - [anon_sym_PERCENT_EQ] = ACTIONS(598), - [anon_sym_AMP_EQ] = ACTIONS(598), - [anon_sym_PIPE_EQ] = ACTIONS(598), - [anon_sym_CARET_EQ] = ACTIONS(598), - [anon_sym_LT_LT_EQ] = ACTIONS(598), - [anon_sym_GT_GT_EQ] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(600), - [sym_integer_literal] = ACTIONS(598), - [aux_sym_string_literal_token1] = ACTIONS(598), - [sym_char_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(600), - [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_crate] = ACTIONS(600), - [sym_metavariable] = ACTIONS(598), - [sym_raw_string_literal] = ACTIONS(598), - [sym_float_literal] = ACTIONS(598), + [sym_identifier] = ACTIONS(614), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_ref] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(612), + [anon_sym__] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [sym_mutable_specifier] = ACTIONS(614), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(612), + [aux_sym_string_literal_token1] = ACTIONS(612), + [sym_char_literal] = ACTIONS(612), + [anon_sym_true] = ACTIONS(614), + [anon_sym_false] = ACTIONS(614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(612), + [sym_raw_string_literal] = ACTIONS(612), + [sym_float_literal] = ACTIONS(612), [sym_block_comment] = ACTIONS(3), }, [221] = { - [sym_identifier] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_ref] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym__] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [sym_mutable_specifier] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), + [sym_identifier] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u128] = ACTIONS(568), + [anon_sym_i128] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_str] = ACTIONS(568), + [anon_sym_char] = ACTIONS(568), + [anon_sym_as] = ACTIONS(568), + [anon_sym_const] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_union] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym__] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [sym_mutable_specifier] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(566), + [sym_char_literal] = ACTIONS(566), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), + [sym_self] = ACTIONS(568), + [sym_super] = ACTIONS(568), + [sym_crate] = ACTIONS(568), + [sym_metavariable] = ACTIONS(566), + [sym_raw_string_literal] = ACTIONS(566), + [sym_float_literal] = ACTIONS(566), [sym_block_comment] = ACTIONS(3), }, [222] = { - [sym_identifier] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_union] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(574), - [anon_sym_ref] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(574), - [anon_sym__] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(576), - [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(574), - [anon_sym_LT_LT] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [anon_sym_DASH_EQ] = ACTIONS(574), - [anon_sym_STAR_EQ] = ACTIONS(574), - [anon_sym_SLASH_EQ] = ACTIONS(574), - [anon_sym_PERCENT_EQ] = ACTIONS(574), - [anon_sym_AMP_EQ] = ACTIONS(574), - [anon_sym_PIPE_EQ] = ACTIONS(574), - [anon_sym_CARET_EQ] = ACTIONS(574), - [anon_sym_LT_LT_EQ] = ACTIONS(574), - [anon_sym_GT_GT_EQ] = ACTIONS(574), - [anon_sym_DOT] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_metavariable] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2208), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2208), + [sym__literal] = STATE(2208), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(904), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(904), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, [223] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2011), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2005), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2276), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2276), - [sym__literal] = STATE(2276), - [sym_string_literal] = STATE(2286), - [sym_boolean_literal] = STATE(2286), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2208), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2208), + [sym__literal] = STATE(2208), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -39155,7 +39234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -39174,243 +39253,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [224] = { - [sym_identifier] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(910), - [anon_sym_i8] = ACTIONS(910), - [anon_sym_u16] = ACTIONS(910), - [anon_sym_i16] = ACTIONS(910), - [anon_sym_u32] = ACTIONS(910), - [anon_sym_i32] = ACTIONS(910), - [anon_sym_u64] = ACTIONS(910), - [anon_sym_i64] = ACTIONS(910), - [anon_sym_u128] = ACTIONS(910), - [anon_sym_i128] = ACTIONS(910), - [anon_sym_isize] = ACTIONS(910), - [anon_sym_usize] = ACTIONS(910), - [anon_sym_f32] = ACTIONS(910), - [anon_sym_f64] = ACTIONS(910), - [anon_sym_bool] = ACTIONS(910), - [anon_sym_str] = ACTIONS(910), - [anon_sym_char] = ACTIONS(910), - [anon_sym_as] = ACTIONS(568), - [anon_sym_const] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_POUND] = ACTIONS(912), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_ref] = ACTIONS(910), - [anon_sym_LT] = ACTIONS(910), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym__] = ACTIONS(910), - [anon_sym_AMP] = ACTIONS(910), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [sym_mutable_specifier] = ACTIONS(910), - [anon_sym_DOT_DOT] = ACTIONS(910), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(912), - [aux_sym_string_literal_token1] = ACTIONS(912), - [sym_char_literal] = ACTIONS(912), - [anon_sym_true] = ACTIONS(910), - [anon_sym_false] = ACTIONS(910), + [sym_identifier] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(630), + [anon_sym_i8] = ACTIONS(630), + [anon_sym_u16] = ACTIONS(630), + [anon_sym_i16] = ACTIONS(630), + [anon_sym_u32] = ACTIONS(630), + [anon_sym_i32] = ACTIONS(630), + [anon_sym_u64] = ACTIONS(630), + [anon_sym_i64] = ACTIONS(630), + [anon_sym_u128] = ACTIONS(630), + [anon_sym_i128] = ACTIONS(630), + [anon_sym_isize] = ACTIONS(630), + [anon_sym_usize] = ACTIONS(630), + [anon_sym_f32] = ACTIONS(630), + [anon_sym_f64] = ACTIONS(630), + [anon_sym_bool] = ACTIONS(630), + [anon_sym_str] = ACTIONS(630), + [anon_sym_char] = ACTIONS(630), + [anon_sym_as] = ACTIONS(630), + [anon_sym_const] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_union] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(628), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(628), + [anon_sym_ref] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_COLON_COLON] = ACTIONS(628), + [anon_sym__] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [sym_mutable_specifier] = ACTIONS(630), + [anon_sym_DOT_DOT] = ACTIONS(630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_PIPE_PIPE] = ACTIONS(628), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(628), + [anon_sym_BANG_EQ] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_PLUS_EQ] = ACTIONS(628), + [anon_sym_DASH_EQ] = ACTIONS(628), + [anon_sym_STAR_EQ] = ACTIONS(628), + [anon_sym_SLASH_EQ] = ACTIONS(628), + [anon_sym_PERCENT_EQ] = ACTIONS(628), + [anon_sym_AMP_EQ] = ACTIONS(628), + [anon_sym_PIPE_EQ] = ACTIONS(628), + [anon_sym_CARET_EQ] = ACTIONS(628), + [anon_sym_LT_LT_EQ] = ACTIONS(628), + [anon_sym_GT_GT_EQ] = ACTIONS(628), + [anon_sym_DOT] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(628), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(630), + [anon_sym_false] = ACTIONS(630), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), - [sym_raw_string_literal] = ACTIONS(912), - [sym_float_literal] = ACTIONS(912), + [sym_self] = ACTIONS(630), + [sym_super] = ACTIONS(630), + [sym_crate] = ACTIONS(630), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(628), + [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, [225] = { - [sym_identifier] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [sym_mutable_specifier] = ACTIONS(674), - [anon_sym_DOT_DOT] = ACTIONS(674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(672), - [anon_sym_PIPE_PIPE] = ACTIONS(672), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(672), - [anon_sym_BANG_EQ] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(672), - [anon_sym_DASH_EQ] = ACTIONS(672), - [anon_sym_STAR_EQ] = ACTIONS(672), - [anon_sym_SLASH_EQ] = ACTIONS(672), - [anon_sym_PERCENT_EQ] = ACTIONS(672), - [anon_sym_AMP_EQ] = ACTIONS(672), - [anon_sym_PIPE_EQ] = ACTIONS(672), - [anon_sym_CARET_EQ] = ACTIONS(672), - [anon_sym_LT_LT_EQ] = ACTIONS(672), - [anon_sym_GT_GT_EQ] = ACTIONS(672), - [anon_sym_DOT] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(672), - [aux_sym_string_literal_token1] = ACTIONS(672), - [sym_char_literal] = ACTIONS(672), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), + [sym_identifier] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_ref] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym__] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym_metavariable] = ACTIONS(672), - [sym_raw_string_literal] = ACTIONS(672), - [sym_float_literal] = ACTIONS(672), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), [sym_block_comment] = ACTIONS(3), }, [226] = { - [sym_identifier] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(558), - [anon_sym_u8] = ACTIONS(560), - [anon_sym_i8] = ACTIONS(560), - [anon_sym_u16] = ACTIONS(560), - [anon_sym_i16] = ACTIONS(560), - [anon_sym_u32] = ACTIONS(560), - [anon_sym_i32] = ACTIONS(560), - [anon_sym_u64] = ACTIONS(560), - [anon_sym_i64] = ACTIONS(560), - [anon_sym_u128] = ACTIONS(560), - [anon_sym_i128] = ACTIONS(560), - [anon_sym_isize] = ACTIONS(560), - [anon_sym_usize] = ACTIONS(560), - [anon_sym_f32] = ACTIONS(560), - [anon_sym_f64] = ACTIONS(560), - [anon_sym_bool] = ACTIONS(560), - [anon_sym_str] = ACTIONS(560), - [anon_sym_char] = ACTIONS(560), - [anon_sym_as] = ACTIONS(560), - [anon_sym_const] = ACTIONS(560), - [anon_sym_default] = ACTIONS(560), - [anon_sym_union] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(558), - [anon_sym_EQ] = ACTIONS(560), - [anon_sym_COMMA] = ACTIONS(558), - [anon_sym_ref] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym__] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(558), - [sym_mutable_specifier] = ACTIONS(560), - [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_BANG_EQ] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(558), - [anon_sym_DASH_EQ] = ACTIONS(558), - [anon_sym_STAR_EQ] = ACTIONS(558), - [anon_sym_SLASH_EQ] = ACTIONS(558), - [anon_sym_PERCENT_EQ] = ACTIONS(558), - [anon_sym_AMP_EQ] = ACTIONS(558), - [anon_sym_PIPE_EQ] = ACTIONS(558), - [anon_sym_CARET_EQ] = ACTIONS(558), - [anon_sym_LT_LT_EQ] = ACTIONS(558), - [anon_sym_GT_GT_EQ] = ACTIONS(558), - [anon_sym_DOT] = ACTIONS(560), - [sym_integer_literal] = ACTIONS(558), - [aux_sym_string_literal_token1] = ACTIONS(558), - [sym_char_literal] = ACTIONS(558), - [anon_sym_true] = ACTIONS(560), - [anon_sym_false] = ACTIONS(560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(560), - [sym_super] = ACTIONS(560), - [sym_crate] = ACTIONS(560), - [sym_metavariable] = ACTIONS(558), - [sym_raw_string_literal] = ACTIONS(558), - [sym_float_literal] = ACTIONS(558), + [sym_identifier] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(624), + [anon_sym_ref] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym__] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(624), + [sym_mutable_specifier] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_BANG_EQ] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(624), + [anon_sym_DASH_EQ] = ACTIONS(624), + [anon_sym_STAR_EQ] = ACTIONS(624), + [anon_sym_SLASH_EQ] = ACTIONS(624), + [anon_sym_PERCENT_EQ] = ACTIONS(624), + [anon_sym_AMP_EQ] = ACTIONS(624), + [anon_sym_PIPE_EQ] = ACTIONS(624), + [anon_sym_CARET_EQ] = ACTIONS(624), + [anon_sym_LT_LT_EQ] = ACTIONS(624), + [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_metavariable] = ACTIONS(624), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), [sym_block_comment] = ACTIONS(3), }, [227] = { @@ -39494,33 +39573,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [228] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2011), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2005), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2276), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2276), - [sym__literal] = STATE(2276), - [sym_string_literal] = STATE(2286), - [sym_boolean_literal] = STATE(2286), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2208), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2208), + [sym__literal] = STATE(2208), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -39555,7 +39634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(914), + [anon_sym_GT] = ACTIONS(912), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -39574,246 +39653,646 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [229] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2011), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2005), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2276), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2276), - [sym__literal] = STATE(2276), - [sym_string_literal] = STATE(2286), - [sym_boolean_literal] = STATE(2286), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(662), + [anon_sym_i8] = ACTIONS(662), + [anon_sym_u16] = ACTIONS(662), + [anon_sym_i16] = ACTIONS(662), + [anon_sym_u32] = ACTIONS(662), + [anon_sym_i32] = ACTIONS(662), + [anon_sym_u64] = ACTIONS(662), + [anon_sym_i64] = ACTIONS(662), + [anon_sym_u128] = ACTIONS(662), + [anon_sym_i128] = ACTIONS(662), + [anon_sym_isize] = ACTIONS(662), + [anon_sym_usize] = ACTIONS(662), + [anon_sym_f32] = ACTIONS(662), + [anon_sym_f64] = ACTIONS(662), + [anon_sym_bool] = ACTIONS(662), + [anon_sym_str] = ACTIONS(662), + [anon_sym_char] = ACTIONS(662), + [anon_sym_as] = ACTIONS(662), + [anon_sym_const] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_union] = ACTIONS(662), + [anon_sym_POUND] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_ref] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(660), + [anon_sym__] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(660), + [sym_mutable_specifier] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT_EQ] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_STAR_EQ] = ACTIONS(660), + [anon_sym_SLASH_EQ] = ACTIONS(660), + [anon_sym_PERCENT_EQ] = ACTIONS(660), + [anon_sym_AMP_EQ] = ACTIONS(660), + [anon_sym_PIPE_EQ] = ACTIONS(660), + [anon_sym_CARET_EQ] = ACTIONS(660), + [anon_sym_LT_LT_EQ] = ACTIONS(660), + [anon_sym_GT_GT_EQ] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(662), + [sym_integer_literal] = ACTIONS(660), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(660), + [anon_sym_true] = ACTIONS(662), + [anon_sym_false] = ACTIONS(662), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), + [sym_self] = ACTIONS(662), + [sym_super] = ACTIONS(662), + [sym_crate] = ACTIONS(662), + [sym_metavariable] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(660), + [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), }, [230] = { - [sym_identifier] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_ref] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym__] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [sym_mutable_specifier] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), + [sym_identifier] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(916), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_as] = ACTIONS(562), + [anon_sym_const] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_POUND] = ACTIONS(916), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(914), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym__] = ACTIONS(914), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + [sym_mutable_specifier] = ACTIONS(914), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(562), + [sym_integer_literal] = ACTIONS(916), + [aux_sym_string_literal_token1] = ACTIONS(916), + [sym_char_literal] = ACTIONS(916), + [anon_sym_true] = ACTIONS(914), + [anon_sym_false] = ACTIONS(914), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(914), + [sym_super] = ACTIONS(914), + [sym_crate] = ACTIONS(914), + [sym_metavariable] = ACTIONS(916), + [sym_raw_string_literal] = ACTIONS(916), + [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, [231] = { - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_EQ] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_ref] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(638), - [anon_sym_COLON_COLON] = ACTIONS(636), - [anon_sym__] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(636), - [sym_mutable_specifier] = ACTIONS(638), - [anon_sym_DOT_DOT] = ACTIONS(638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_LT_LT] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_SLASH] = ACTIONS(638), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_AMP_EQ] = ACTIONS(636), - [anon_sym_PIPE_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_LT_LT_EQ] = ACTIONS(636), - [anon_sym_GT_GT_EQ] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(636), - [aux_sym_string_literal_token1] = ACTIONS(636), - [sym_char_literal] = ACTIONS(636), - [anon_sym_true] = ACTIONS(638), - [anon_sym_false] = ACTIONS(638), + [sym_identifier] = ACTIONS(674), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(674), + [anon_sym_i8] = ACTIONS(674), + [anon_sym_u16] = ACTIONS(674), + [anon_sym_i16] = ACTIONS(674), + [anon_sym_u32] = ACTIONS(674), + [anon_sym_i32] = ACTIONS(674), + [anon_sym_u64] = ACTIONS(674), + [anon_sym_i64] = ACTIONS(674), + [anon_sym_u128] = ACTIONS(674), + [anon_sym_i128] = ACTIONS(674), + [anon_sym_isize] = ACTIONS(674), + [anon_sym_usize] = ACTIONS(674), + [anon_sym_f32] = ACTIONS(674), + [anon_sym_f64] = ACTIONS(674), + [anon_sym_bool] = ACTIONS(674), + [anon_sym_str] = ACTIONS(674), + [anon_sym_char] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_ref] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [sym_mutable_specifier] = ACTIONS(674), + [anon_sym_DOT_DOT] = ACTIONS(674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_CARET] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(674), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(672), + [aux_sym_string_literal_token1] = ACTIONS(672), + [sym_char_literal] = ACTIONS(672), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(636), - [sym_raw_string_literal] = ACTIONS(636), - [sym_float_literal] = ACTIONS(636), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(672), + [sym_raw_string_literal] = ACTIONS(672), + [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), }, [232] = { + [sym_identifier] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_u8] = ACTIONS(646), + [anon_sym_i8] = ACTIONS(646), + [anon_sym_u16] = ACTIONS(646), + [anon_sym_i16] = ACTIONS(646), + [anon_sym_u32] = ACTIONS(646), + [anon_sym_i32] = ACTIONS(646), + [anon_sym_u64] = ACTIONS(646), + [anon_sym_i64] = ACTIONS(646), + [anon_sym_u128] = ACTIONS(646), + [anon_sym_i128] = ACTIONS(646), + [anon_sym_isize] = ACTIONS(646), + [anon_sym_usize] = ACTIONS(646), + [anon_sym_f32] = ACTIONS(646), + [anon_sym_f64] = ACTIONS(646), + [anon_sym_bool] = ACTIONS(646), + [anon_sym_str] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_const] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_union] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_ref] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(644), + [anon_sym__] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(644), + [sym_mutable_specifier] = ACTIONS(646), + [anon_sym_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_SLASH_EQ] = ACTIONS(644), + [anon_sym_PERCENT_EQ] = ACTIONS(644), + [anon_sym_AMP_EQ] = ACTIONS(644), + [anon_sym_PIPE_EQ] = ACTIONS(644), + [anon_sym_CARET_EQ] = ACTIONS(644), + [anon_sym_LT_LT_EQ] = ACTIONS(644), + [anon_sym_GT_GT_EQ] = ACTIONS(644), + [anon_sym_DOT] = ACTIONS(646), + [sym_integer_literal] = ACTIONS(644), + [aux_sym_string_literal_token1] = ACTIONS(644), + [sym_char_literal] = ACTIONS(644), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(644), + [sym_raw_string_literal] = ACTIONS(644), + [sym_float_literal] = ACTIONS(644), + [sym_block_comment] = ACTIONS(3), + }, + [233] = { + [sym_identifier] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_u8] = ACTIONS(610), + [anon_sym_i8] = ACTIONS(610), + [anon_sym_u16] = ACTIONS(610), + [anon_sym_i16] = ACTIONS(610), + [anon_sym_u32] = ACTIONS(610), + [anon_sym_i32] = ACTIONS(610), + [anon_sym_u64] = ACTIONS(610), + [anon_sym_i64] = ACTIONS(610), + [anon_sym_u128] = ACTIONS(610), + [anon_sym_i128] = ACTIONS(610), + [anon_sym_isize] = ACTIONS(610), + [anon_sym_usize] = ACTIONS(610), + [anon_sym_f32] = ACTIONS(610), + [anon_sym_f64] = ACTIONS(610), + [anon_sym_bool] = ACTIONS(610), + [anon_sym_str] = ACTIONS(610), + [anon_sym_char] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_default] = ACTIONS(610), + [anon_sym_union] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_ref] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym__] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(608), + [sym_mutable_specifier] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_DOT] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(608), + [aux_sym_string_literal_token1] = ACTIONS(608), + [sym_char_literal] = ACTIONS(608), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_crate] = ACTIONS(610), + [sym_metavariable] = ACTIONS(608), + [sym_raw_string_literal] = ACTIONS(608), + [sym_float_literal] = ACTIONS(608), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { + [sym_identifier] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_u8] = ACTIONS(918), + [anon_sym_i8] = ACTIONS(918), + [anon_sym_u16] = ACTIONS(918), + [anon_sym_i16] = ACTIONS(918), + [anon_sym_u32] = ACTIONS(918), + [anon_sym_i32] = ACTIONS(918), + [anon_sym_u64] = ACTIONS(918), + [anon_sym_i64] = ACTIONS(918), + [anon_sym_u128] = ACTIONS(918), + [anon_sym_i128] = ACTIONS(918), + [anon_sym_isize] = ACTIONS(918), + [anon_sym_usize] = ACTIONS(918), + [anon_sym_f32] = ACTIONS(918), + [anon_sym_f64] = ACTIONS(918), + [anon_sym_bool] = ACTIONS(918), + [anon_sym_str] = ACTIONS(918), + [anon_sym_char] = ACTIONS(918), + [anon_sym_as] = ACTIONS(562), + [anon_sym_const] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_union] = ACTIONS(918), + [anon_sym_POUND] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_ref] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(918), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(920), + [anon_sym__] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + [sym_mutable_specifier] = ACTIONS(918), + [anon_sym_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(562), + [sym_integer_literal] = ACTIONS(920), + [aux_sym_string_literal_token1] = ACTIONS(920), + [sym_char_literal] = ACTIONS(920), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [235] = { + [sym_identifier] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(618), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_ref] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym__] = ACTIONS(618), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_CARET] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_metavariable] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), + [sym_block_comment] = ACTIONS(3), + }, + [236] = { + [sym_identifier] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_isize] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_f32] = ACTIONS(606), + [anon_sym_f64] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_str] = ACTIONS(606), + [anon_sym_char] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_union] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_ref] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym__] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(604), + [sym_mutable_specifier] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_PLUS_EQ] = ACTIONS(604), + [anon_sym_DASH_EQ] = ACTIONS(604), + [anon_sym_STAR_EQ] = ACTIONS(604), + [anon_sym_SLASH_EQ] = ACTIONS(604), + [anon_sym_PERCENT_EQ] = ACTIONS(604), + [anon_sym_AMP_EQ] = ACTIONS(604), + [anon_sym_PIPE_EQ] = ACTIONS(604), + [anon_sym_CARET_EQ] = ACTIONS(604), + [anon_sym_LT_LT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_EQ] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(606), + [sym_integer_literal] = ACTIONS(604), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_char_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(606), + [sym_super] = ACTIONS(606), + [sym_crate] = ACTIONS(606), + [sym_metavariable] = ACTIONS(604), + [sym_raw_string_literal] = ACTIONS(604), + [sym_float_literal] = ACTIONS(604), + [sym_block_comment] = ACTIONS(3), + }, + [237] = { [sym_identifier] = ACTIONS(642), [anon_sym_LPAREN] = ACTIONS(640), [anon_sym_RBRACE] = ACTIONS(640), @@ -39893,887 +40372,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(640), [sym_block_comment] = ACTIONS(3), }, - [233] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2011), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2005), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2276), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2276), - [sym__literal] = STATE(2276), - [sym_string_literal] = STATE(2286), - [sym_boolean_literal] = STATE(2286), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(918), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [sym_identifier] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(668), - [anon_sym_u8] = ACTIONS(670), - [anon_sym_i8] = ACTIONS(670), - [anon_sym_u16] = ACTIONS(670), - [anon_sym_i16] = ACTIONS(670), - [anon_sym_u32] = ACTIONS(670), - [anon_sym_i32] = ACTIONS(670), - [anon_sym_u64] = ACTIONS(670), - [anon_sym_i64] = ACTIONS(670), - [anon_sym_u128] = ACTIONS(670), - [anon_sym_i128] = ACTIONS(670), - [anon_sym_isize] = ACTIONS(670), - [anon_sym_usize] = ACTIONS(670), - [anon_sym_f32] = ACTIONS(670), - [anon_sym_f64] = ACTIONS(670), - [anon_sym_bool] = ACTIONS(670), - [anon_sym_str] = ACTIONS(670), - [anon_sym_char] = ACTIONS(670), - [anon_sym_as] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_union] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(668), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(668), - [anon_sym_ref] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_COLON_COLON] = ACTIONS(668), - [anon_sym__] = ACTIONS(670), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [sym_mutable_specifier] = ACTIONS(670), - [anon_sym_DOT_DOT] = ACTIONS(670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(668), - [anon_sym_PIPE_PIPE] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(668), - [anon_sym_BANG_EQ] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(668), - [anon_sym_DASH_EQ] = ACTIONS(668), - [anon_sym_STAR_EQ] = ACTIONS(668), - [anon_sym_SLASH_EQ] = ACTIONS(668), - [anon_sym_PERCENT_EQ] = ACTIONS(668), - [anon_sym_AMP_EQ] = ACTIONS(668), - [anon_sym_PIPE_EQ] = ACTIONS(668), - [anon_sym_CARET_EQ] = ACTIONS(668), - [anon_sym_LT_LT_EQ] = ACTIONS(668), - [anon_sym_GT_GT_EQ] = ACTIONS(668), - [anon_sym_DOT] = ACTIONS(670), - [sym_integer_literal] = ACTIONS(668), - [aux_sym_string_literal_token1] = ACTIONS(668), - [sym_char_literal] = ACTIONS(668), - [anon_sym_true] = ACTIONS(670), - [anon_sym_false] = ACTIONS(670), + [238] = { + [sym_identifier] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_COMMA] = ACTIONS(582), + [anon_sym_ref] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym__] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [sym_mutable_specifier] = ACTIONS(584), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(670), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym_metavariable] = ACTIONS(668), - [sym_raw_string_literal] = ACTIONS(668), - [sym_float_literal] = ACTIONS(668), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym_identifier] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_RBRACE] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_ref] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(678), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [sym_mutable_specifier] = ACTIONS(678), - [anon_sym_DOT_DOT] = ACTIONS(678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(676), - [aux_sym_string_literal_token1] = ACTIONS(676), - [sym_char_literal] = ACTIONS(676), - [anon_sym_true] = ACTIONS(678), - [anon_sym_false] = ACTIONS(678), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym_metavariable] = ACTIONS(676), - [sym_raw_string_literal] = ACTIONS(676), - [sym_float_literal] = ACTIONS(676), - [sym_block_comment] = ACTIONS(3), - }, - [236] = { - [sym_identifier] = ACTIONS(630), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_u8] = ACTIONS(630), - [anon_sym_i8] = ACTIONS(630), - [anon_sym_u16] = ACTIONS(630), - [anon_sym_i16] = ACTIONS(630), - [anon_sym_u32] = ACTIONS(630), - [anon_sym_i32] = ACTIONS(630), - [anon_sym_u64] = ACTIONS(630), - [anon_sym_i64] = ACTIONS(630), - [anon_sym_u128] = ACTIONS(630), - [anon_sym_i128] = ACTIONS(630), - [anon_sym_isize] = ACTIONS(630), - [anon_sym_usize] = ACTIONS(630), - [anon_sym_f32] = ACTIONS(630), - [anon_sym_f64] = ACTIONS(630), - [anon_sym_bool] = ACTIONS(630), - [anon_sym_str] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [anon_sym_as] = ACTIONS(630), - [anon_sym_const] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_union] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(628), - [anon_sym_EQ] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(628), - [anon_sym_ref] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_COLON_COLON] = ACTIONS(628), - [anon_sym__] = ACTIONS(630), - [anon_sym_AMP] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [sym_mutable_specifier] = ACTIONS(630), - [anon_sym_DOT_DOT] = ACTIONS(630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(628), - [anon_sym_PIPE_PIPE] = ACTIONS(628), - [anon_sym_PIPE] = ACTIONS(630), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(628), - [anon_sym_BANG_EQ] = ACTIONS(628), - [anon_sym_LT_EQ] = ACTIONS(628), - [anon_sym_GT_EQ] = ACTIONS(628), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(630), - [anon_sym_SLASH] = ACTIONS(630), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_PLUS_EQ] = ACTIONS(628), - [anon_sym_DASH_EQ] = ACTIONS(628), - [anon_sym_STAR_EQ] = ACTIONS(628), - [anon_sym_SLASH_EQ] = ACTIONS(628), - [anon_sym_PERCENT_EQ] = ACTIONS(628), - [anon_sym_AMP_EQ] = ACTIONS(628), - [anon_sym_PIPE_EQ] = ACTIONS(628), - [anon_sym_CARET_EQ] = ACTIONS(628), - [anon_sym_LT_LT_EQ] = ACTIONS(628), - [anon_sym_GT_GT_EQ] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(630), - [sym_integer_literal] = ACTIONS(628), - [aux_sym_string_literal_token1] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(630), - [sym_super] = ACTIONS(630), - [sym_crate] = ACTIONS(630), - [sym_metavariable] = ACTIONS(628), - [sym_raw_string_literal] = ACTIONS(628), - [sym_float_literal] = ACTIONS(628), - [sym_block_comment] = ACTIONS(3), - }, - [237] = { - [sym_identifier] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(920), - [anon_sym_i8] = ACTIONS(920), - [anon_sym_u16] = ACTIONS(920), - [anon_sym_i16] = ACTIONS(920), - [anon_sym_u32] = ACTIONS(920), - [anon_sym_i32] = ACTIONS(920), - [anon_sym_u64] = ACTIONS(920), - [anon_sym_i64] = ACTIONS(920), - [anon_sym_u128] = ACTIONS(920), - [anon_sym_i128] = ACTIONS(920), - [anon_sym_isize] = ACTIONS(920), - [anon_sym_usize] = ACTIONS(920), - [anon_sym_f32] = ACTIONS(920), - [anon_sym_f64] = ACTIONS(920), - [anon_sym_bool] = ACTIONS(920), - [anon_sym_str] = ACTIONS(920), - [anon_sym_char] = ACTIONS(920), - [anon_sym_as] = ACTIONS(568), - [anon_sym_const] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_union] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(922), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_ref] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(922), - [anon_sym__] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [sym_mutable_specifier] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(922), - [aux_sym_string_literal_token1] = ACTIONS(922), - [sym_char_literal] = ACTIONS(922), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(920), - [sym_super] = ACTIONS(920), - [sym_crate] = ACTIONS(920), - [sym_metavariable] = ACTIONS(922), - [sym_raw_string_literal] = ACTIONS(922), - [sym_float_literal] = ACTIONS(922), - [sym_block_comment] = ACTIONS(3), - }, - [238] = { - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(660), - [anon_sym_u8] = ACTIONS(662), - [anon_sym_i8] = ACTIONS(662), - [anon_sym_u16] = ACTIONS(662), - [anon_sym_i16] = ACTIONS(662), - [anon_sym_u32] = ACTIONS(662), - [anon_sym_i32] = ACTIONS(662), - [anon_sym_u64] = ACTIONS(662), - [anon_sym_i64] = ACTIONS(662), - [anon_sym_u128] = ACTIONS(662), - [anon_sym_i128] = ACTIONS(662), - [anon_sym_isize] = ACTIONS(662), - [anon_sym_usize] = ACTIONS(662), - [anon_sym_f32] = ACTIONS(662), - [anon_sym_f64] = ACTIONS(662), - [anon_sym_bool] = ACTIONS(662), - [anon_sym_str] = ACTIONS(662), - [anon_sym_char] = ACTIONS(662), - [anon_sym_as] = ACTIONS(662), - [anon_sym_const] = ACTIONS(662), - [anon_sym_default] = ACTIONS(662), - [anon_sym_union] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(660), - [anon_sym_EQ] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(660), - [anon_sym_ref] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_COLON_COLON] = ACTIONS(660), - [anon_sym__] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(660), - [sym_mutable_specifier] = ACTIONS(662), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_DOT_DOT_EQ] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [anon_sym_DASH_EQ] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(660), - [anon_sym_PERCENT_EQ] = ACTIONS(660), - [anon_sym_AMP_EQ] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(660), - [anon_sym_LT_LT_EQ] = ACTIONS(660), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_DOT] = ACTIONS(662), - [sym_integer_literal] = ACTIONS(660), - [aux_sym_string_literal_token1] = ACTIONS(660), - [sym_char_literal] = ACTIONS(660), - [anon_sym_true] = ACTIONS(662), - [anon_sym_false] = ACTIONS(662), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(662), - [sym_super] = ACTIONS(662), - [sym_crate] = ACTIONS(662), - [sym_metavariable] = ACTIONS(660), - [sym_raw_string_literal] = ACTIONS(660), - [sym_float_literal] = ACTIONS(660), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), [sym_block_comment] = ACTIONS(3), }, [239] = { - [sym_identifier] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(654), - [anon_sym_i8] = ACTIONS(654), - [anon_sym_u16] = ACTIONS(654), - [anon_sym_i16] = ACTIONS(654), - [anon_sym_u32] = ACTIONS(654), - [anon_sym_i32] = ACTIONS(654), - [anon_sym_u64] = ACTIONS(654), - [anon_sym_i64] = ACTIONS(654), - [anon_sym_u128] = ACTIONS(654), - [anon_sym_i128] = ACTIONS(654), - [anon_sym_isize] = ACTIONS(654), - [anon_sym_usize] = ACTIONS(654), - [anon_sym_f32] = ACTIONS(654), - [anon_sym_f64] = ACTIONS(654), - [anon_sym_bool] = ACTIONS(654), - [anon_sym_str] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_ref] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_COLON_COLON] = ACTIONS(652), - [anon_sym__] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(652), - [sym_mutable_specifier] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT_EQ] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(652), - [anon_sym_PERCENT_EQ] = ACTIONS(652), - [anon_sym_AMP_EQ] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(652), - [anon_sym_LT_LT_EQ] = ACTIONS(652), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(654), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(654), - [anon_sym_false] = ACTIONS(654), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(648), + [anon_sym_u8] = ACTIONS(650), + [anon_sym_i8] = ACTIONS(650), + [anon_sym_u16] = ACTIONS(650), + [anon_sym_i16] = ACTIONS(650), + [anon_sym_u32] = ACTIONS(650), + [anon_sym_i32] = ACTIONS(650), + [anon_sym_u64] = ACTIONS(650), + [anon_sym_i64] = ACTIONS(650), + [anon_sym_u128] = ACTIONS(650), + [anon_sym_i128] = ACTIONS(650), + [anon_sym_isize] = ACTIONS(650), + [anon_sym_usize] = ACTIONS(650), + [anon_sym_f32] = ACTIONS(650), + [anon_sym_f64] = ACTIONS(650), + [anon_sym_bool] = ACTIONS(650), + [anon_sym_str] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_as] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(648), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_ref] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym__] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(648), + [sym_mutable_specifier] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(648), + [anon_sym_SLASH_EQ] = ACTIONS(648), + [anon_sym_PERCENT_EQ] = ACTIONS(648), + [anon_sym_AMP_EQ] = ACTIONS(648), + [anon_sym_PIPE_EQ] = ACTIONS(648), + [anon_sym_CARET_EQ] = ACTIONS(648), + [anon_sym_LT_LT_EQ] = ACTIONS(648), + [anon_sym_GT_GT_EQ] = ACTIONS(648), + [anon_sym_DOT] = ACTIONS(650), + [sym_integer_literal] = ACTIONS(648), + [aux_sym_string_literal_token1] = ACTIONS(648), + [sym_char_literal] = ACTIONS(648), + [anon_sym_true] = ACTIONS(650), + [anon_sym_false] = ACTIONS(650), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_metavariable] = ACTIONS(652), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), + [sym_self] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_crate] = ACTIONS(650), + [sym_metavariable] = ACTIONS(648), + [sym_raw_string_literal] = ACTIONS(648), + [sym_float_literal] = ACTIONS(648), [sym_block_comment] = ACTIONS(3), }, [240] = { - [sym_identifier] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_u8] = ACTIONS(596), - [anon_sym_i8] = ACTIONS(596), - [anon_sym_u16] = ACTIONS(596), - [anon_sym_i16] = ACTIONS(596), - [anon_sym_u32] = ACTIONS(596), - [anon_sym_i32] = ACTIONS(596), - [anon_sym_u64] = ACTIONS(596), - [anon_sym_i64] = ACTIONS(596), - [anon_sym_u128] = ACTIONS(596), - [anon_sym_i128] = ACTIONS(596), - [anon_sym_isize] = ACTIONS(596), - [anon_sym_usize] = ACTIONS(596), - [anon_sym_f32] = ACTIONS(596), - [anon_sym_f64] = ACTIONS(596), - [anon_sym_bool] = ACTIONS(596), - [anon_sym_str] = ACTIONS(596), - [anon_sym_char] = ACTIONS(596), - [anon_sym_as] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(596), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_ref] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(596), - [anon_sym_COLON_COLON] = ACTIONS(594), - [anon_sym__] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_mutable_specifier] = ACTIONS(596), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(594), - [anon_sym_PIPE] = ACTIONS(596), - [anon_sym_CARET] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_LT_LT] = ACTIONS(596), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(596), - [anon_sym_PERCENT] = ACTIONS(596), - [anon_sym_PLUS_EQ] = ACTIONS(594), - [anon_sym_DASH_EQ] = ACTIONS(594), - [anon_sym_STAR_EQ] = ACTIONS(594), - [anon_sym_SLASH_EQ] = ACTIONS(594), - [anon_sym_PERCENT_EQ] = ACTIONS(594), - [anon_sym_AMP_EQ] = ACTIONS(594), - [anon_sym_PIPE_EQ] = ACTIONS(594), - [anon_sym_CARET_EQ] = ACTIONS(594), - [anon_sym_LT_LT_EQ] = ACTIONS(594), - [anon_sym_GT_GT_EQ] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(596), - [sym_integer_literal] = ACTIONS(594), - [aux_sym_string_literal_token1] = ACTIONS(594), - [sym_char_literal] = ACTIONS(594), - [anon_sym_true] = ACTIONS(596), - [anon_sym_false] = ACTIONS(596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(596), - [sym_super] = ACTIONS(596), - [sym_crate] = ACTIONS(596), - [sym_metavariable] = ACTIONS(594), - [sym_raw_string_literal] = ACTIONS(594), - [sym_float_literal] = ACTIONS(594), - [sym_block_comment] = ACTIONS(3), - }, - [241] = { - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(658), - [anon_sym_i8] = ACTIONS(658), - [anon_sym_u16] = ACTIONS(658), - [anon_sym_i16] = ACTIONS(658), - [anon_sym_u32] = ACTIONS(658), - [anon_sym_i32] = ACTIONS(658), - [anon_sym_u64] = ACTIONS(658), - [anon_sym_i64] = ACTIONS(658), - [anon_sym_u128] = ACTIONS(658), - [anon_sym_i128] = ACTIONS(658), - [anon_sym_isize] = ACTIONS(658), - [anon_sym_usize] = ACTIONS(658), - [anon_sym_f32] = ACTIONS(658), - [anon_sym_f64] = ACTIONS(658), - [anon_sym_bool] = ACTIONS(658), - [anon_sym_str] = ACTIONS(658), - [anon_sym_char] = ACTIONS(658), - [anon_sym_as] = ACTIONS(658), - [anon_sym_const] = ACTIONS(658), - [anon_sym_default] = ACTIONS(658), - [anon_sym_union] = ACTIONS(658), - [anon_sym_POUND] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_ref] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_COLON_COLON] = ACTIONS(656), - [anon_sym__] = ACTIONS(658), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [sym_mutable_specifier] = ACTIONS(658), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_AMP_AMP] = ACTIONS(656), - [anon_sym_PIPE_PIPE] = ACTIONS(656), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(656), - [anon_sym_BANG_EQ] = ACTIONS(656), - [anon_sym_LT_EQ] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(656), - [anon_sym_LT_LT] = ACTIONS(658), - [anon_sym_GT_GT] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(658), - [anon_sym_PLUS_EQ] = ACTIONS(656), - [anon_sym_DASH_EQ] = ACTIONS(656), - [anon_sym_STAR_EQ] = ACTIONS(656), - [anon_sym_SLASH_EQ] = ACTIONS(656), - [anon_sym_PERCENT_EQ] = ACTIONS(656), - [anon_sym_AMP_EQ] = ACTIONS(656), - [anon_sym_PIPE_EQ] = ACTIONS(656), - [anon_sym_CARET_EQ] = ACTIONS(656), - [anon_sym_LT_LT_EQ] = ACTIONS(656), - [anon_sym_GT_GT_EQ] = ACTIONS(656), - [anon_sym_DOT] = ACTIONS(658), - [sym_integer_literal] = ACTIONS(656), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(656), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(658), - [sym_super] = ACTIONS(658), - [sym_crate] = ACTIONS(658), - [sym_metavariable] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(656), - [sym_float_literal] = ACTIONS(656), - [sym_block_comment] = ACTIONS(3), - }, - [242] = { - [sym_identifier] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_QMARK] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(608), - [anon_sym_i8] = ACTIONS(608), - [anon_sym_u16] = ACTIONS(608), - [anon_sym_i16] = ACTIONS(608), - [anon_sym_u32] = ACTIONS(608), - [anon_sym_i32] = ACTIONS(608), - [anon_sym_u64] = ACTIONS(608), - [anon_sym_i64] = ACTIONS(608), - [anon_sym_u128] = ACTIONS(608), - [anon_sym_i128] = ACTIONS(608), - [anon_sym_isize] = ACTIONS(608), - [anon_sym_usize] = ACTIONS(608), - [anon_sym_f32] = ACTIONS(608), - [anon_sym_f64] = ACTIONS(608), - [anon_sym_bool] = ACTIONS(608), - [anon_sym_str] = ACTIONS(608), - [anon_sym_char] = ACTIONS(608), - [anon_sym_as] = ACTIONS(608), - [anon_sym_const] = ACTIONS(608), - [anon_sym_default] = ACTIONS(608), - [anon_sym_union] = ACTIONS(608), - [anon_sym_POUND] = ACTIONS(606), - [anon_sym_EQ] = ACTIONS(608), - [anon_sym_COMMA] = ACTIONS(606), - [anon_sym_ref] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_COLON_COLON] = ACTIONS(606), - [anon_sym__] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_mutable_specifier] = ACTIONS(608), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(606), - [anon_sym_PIPE_PIPE] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_EQ_EQ] = ACTIONS(606), - [anon_sym_BANG_EQ] = ACTIONS(606), - [anon_sym_LT_EQ] = ACTIONS(606), - [anon_sym_GT_EQ] = ACTIONS(606), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(608), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_PLUS_EQ] = ACTIONS(606), - [anon_sym_DASH_EQ] = ACTIONS(606), - [anon_sym_STAR_EQ] = ACTIONS(606), - [anon_sym_SLASH_EQ] = ACTIONS(606), - [anon_sym_PERCENT_EQ] = ACTIONS(606), - [anon_sym_AMP_EQ] = ACTIONS(606), - [anon_sym_PIPE_EQ] = ACTIONS(606), - [anon_sym_CARET_EQ] = ACTIONS(606), - [anon_sym_LT_LT_EQ] = ACTIONS(606), - [anon_sym_GT_GT_EQ] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(608), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(606), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(608), - [anon_sym_false] = ACTIONS(608), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(608), - [sym_super] = ACTIONS(608), - [sym_crate] = ACTIONS(608), - [sym_metavariable] = ACTIONS(606), - [sym_raw_string_literal] = ACTIONS(606), - [sym_float_literal] = ACTIONS(606), - [sym_block_comment] = ACTIONS(3), - }, - [243] = { - [sym_identifier] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_u8] = ACTIONS(646), - [anon_sym_i8] = ACTIONS(646), - [anon_sym_u16] = ACTIONS(646), - [anon_sym_i16] = ACTIONS(646), - [anon_sym_u32] = ACTIONS(646), - [anon_sym_i32] = ACTIONS(646), - [anon_sym_u64] = ACTIONS(646), - [anon_sym_i64] = ACTIONS(646), - [anon_sym_u128] = ACTIONS(646), - [anon_sym_i128] = ACTIONS(646), - [anon_sym_isize] = ACTIONS(646), - [anon_sym_usize] = ACTIONS(646), - [anon_sym_f32] = ACTIONS(646), - [anon_sym_f64] = ACTIONS(646), - [anon_sym_bool] = ACTIONS(646), - [anon_sym_str] = ACTIONS(646), - [anon_sym_char] = ACTIONS(646), - [anon_sym_as] = ACTIONS(646), - [anon_sym_const] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_union] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(644), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_ref] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym__] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [sym_mutable_specifier] = ACTIONS(646), - [anon_sym_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_AMP_EQ] = ACTIONS(644), - [anon_sym_PIPE_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_LT_LT_EQ] = ACTIONS(644), - [anon_sym_GT_GT_EQ] = ACTIONS(644), - [anon_sym_DOT] = ACTIONS(646), - [sym_integer_literal] = ACTIONS(644), - [aux_sym_string_literal_token1] = ACTIONS(644), - [sym_char_literal] = ACTIONS(644), - [anon_sym_true] = ACTIONS(646), - [anon_sym_false] = ACTIONS(646), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(646), - [sym_super] = ACTIONS(646), - [sym_crate] = ACTIONS(646), - [sym_metavariable] = ACTIONS(644), - [sym_raw_string_literal] = ACTIONS(644), - [sym_float_literal] = ACTIONS(644), - [sym_block_comment] = ACTIONS(3), - }, - [244] = { [sym_identifier] = ACTIONS(666), [anon_sym_LPAREN] = ACTIONS(664), [anon_sym_RBRACE] = ACTIONS(664), @@ -40853,46 +40612,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, - [245] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2011), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2005), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2276), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2276), - [sym__literal] = STATE(2276), - [sym_string_literal] = STATE(2286), - [sym_boolean_literal] = STATE(2286), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), + [241] = { + [sym_identifier] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_QMARK] = ACTIONS(636), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_POUND] = ACTIONS(636), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_ref] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_COLON_COLON] = ACTIONS(636), + [anon_sym__] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(636), + [sym_mutable_specifier] = ACTIONS(638), + [anon_sym_DOT_DOT] = ACTIONS(638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_EQ_EQ] = ACTIONS(636), + [anon_sym_BANG_EQ] = ACTIONS(636), + [anon_sym_LT_EQ] = ACTIONS(636), + [anon_sym_GT_EQ] = ACTIONS(636), + [anon_sym_LT_LT] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(638), + [anon_sym_PERCENT] = ACTIONS(638), + [anon_sym_PLUS_EQ] = ACTIONS(636), + [anon_sym_DASH_EQ] = ACTIONS(636), + [anon_sym_STAR_EQ] = ACTIONS(636), + [anon_sym_SLASH_EQ] = ACTIONS(636), + [anon_sym_PERCENT_EQ] = ACTIONS(636), + [anon_sym_AMP_EQ] = ACTIONS(636), + [anon_sym_PIPE_EQ] = ACTIONS(636), + [anon_sym_CARET_EQ] = ACTIONS(636), + [anon_sym_LT_LT_EQ] = ACTIONS(636), + [anon_sym_GT_GT_EQ] = ACTIONS(636), + [anon_sym_DOT] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(636), + [aux_sym_string_literal_token1] = ACTIONS(636), + [sym_char_literal] = ACTIONS(636), + [anon_sym_true] = ACTIONS(638), + [anon_sym_false] = ACTIONS(638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(636), + [sym_raw_string_literal] = ACTIONS(636), + [sym_float_literal] = ACTIONS(636), + [sym_block_comment] = ACTIONS(3), + }, + [242] = { + [sym_identifier] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(578), + [anon_sym_ref] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym__] = ACTIONS(580), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_mutable_specifier] = ACTIONS(580), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), + [sym_block_comment] = ACTIONS(3), + }, + [243] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2208), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2208), + [sym__literal] = STATE(2208), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(904), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(904), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [244] = { + [sym_identifier] = ACTIONS(670), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(668), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_ref] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_COLON_COLON] = ACTIONS(668), + [anon_sym__] = ACTIONS(670), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(668), + [sym_mutable_specifier] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(670), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(668), + [aux_sym_string_literal_token1] = ACTIONS(668), + [sym_char_literal] = ACTIONS(668), + [anon_sym_true] = ACTIONS(670), + [anon_sym_false] = ACTIONS(670), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(668), + [sym_raw_string_literal] = ACTIONS(668), + [sym_float_literal] = ACTIONS(668), + [sym_block_comment] = ACTIONS(3), + }, + [245] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1807), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1806), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2004), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2004), + [sym__literal] = STATE(2004), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), [anon_sym_i64] = ACTIONS(892), [anon_sym_u128] = ACTIONS(892), [anon_sym_i128] = ACTIONS(892), @@ -40933,33 +41012,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [246] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1799), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(1798), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2047), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2047), - [sym__literal] = STATE(2047), - [sym_string_literal] = STATE(2286), - [sym_boolean_literal] = STATE(2286), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2208), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2208), + [sym__literal] = STATE(2208), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -41012,33 +41091,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [247] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), [sym__type] = STATE(1820), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(1819), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_type_binding] = STATE(2065), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2065), - [sym__literal] = STATE(2065), - [sym_string_literal] = STATE(2286), - [sym_boolean_literal] = STATE(2286), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1823), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2080), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2080), + [sym__literal] = STATE(2080), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -41091,35 +41170,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [248] = { - [sym_empty_statement] = STATE(249), - [sym_macro_definition] = STATE(249), - [sym_attribute_item] = STATE(249), - [sym_inner_attribute_item] = STATE(249), - [sym_mod_item] = STATE(249), - [sym_foreign_mod_item] = STATE(249), - [sym_struct_item] = STATE(249), - [sym_union_item] = STATE(249), - [sym_enum_item] = STATE(249), - [sym_extern_crate_declaration] = STATE(249), - [sym_const_item] = STATE(249), - [sym_static_item] = STATE(249), - [sym_type_item] = STATE(249), - [sym_function_item] = STATE(249), - [sym_function_signature_item] = STATE(249), - [sym_function_modifiers] = STATE(2525), - [sym_impl_item] = STATE(249), - [sym_trait_item] = STATE(249), - [sym_associated_type] = STATE(249), - [sym_let_declaration] = STATE(249), - [sym_use_declaration] = STATE(249), - [sym_extern_modifier] = STATE(1504), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2339), - [sym_generic_type_with_turbofish] = STATE(2341), - [sym_macro_invocation] = STATE(249), - [sym_scoped_identifier] = STATE(2242), - [aux_sym_declaration_list_repeat1] = STATE(249), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym_empty_statement] = STATE(252), + [sym_macro_definition] = STATE(252), + [sym_attribute_item] = STATE(252), + [sym_inner_attribute_item] = STATE(252), + [sym_mod_item] = STATE(252), + [sym_foreign_mod_item] = STATE(252), + [sym_struct_item] = STATE(252), + [sym_union_item] = STATE(252), + [sym_enum_item] = STATE(252), + [sym_extern_crate_declaration] = STATE(252), + [sym_const_item] = STATE(252), + [sym_static_item] = STATE(252), + [sym_type_item] = STATE(252), + [sym_function_item] = STATE(252), + [sym_function_signature_item] = STATE(252), + [sym_function_modifiers] = STATE(2548), + [sym_impl_item] = STATE(252), + [sym_trait_item] = STATE(252), + [sym_associated_type] = STATE(252), + [sym_let_declaration] = STATE(252), + [sym_use_declaration] = STATE(252), + [sym_extern_modifier] = STATE(1533), + [sym_visibility_modifier] = STATE(1351), + [sym_bracketed_type] = STATE(2362), + [sym_generic_type_with_turbofish] = STATE(2357), + [sym_macro_invocation] = STATE(252), + [sym_scoped_identifier] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(252), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(926), [anon_sym_macro_rules_BANG] = ACTIONS(928), @@ -41169,39 +41248,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [249] = { - [sym_empty_statement] = STATE(253), - [sym_macro_definition] = STATE(253), - [sym_attribute_item] = STATE(253), - [sym_inner_attribute_item] = STATE(253), - [sym_mod_item] = STATE(253), - [sym_foreign_mod_item] = STATE(253), - [sym_struct_item] = STATE(253), - [sym_union_item] = STATE(253), - [sym_enum_item] = STATE(253), - [sym_extern_crate_declaration] = STATE(253), - [sym_const_item] = STATE(253), - [sym_static_item] = STATE(253), - [sym_type_item] = STATE(253), - [sym_function_item] = STATE(253), - [sym_function_signature_item] = STATE(253), - [sym_function_modifiers] = STATE(2525), - [sym_impl_item] = STATE(253), - [sym_trait_item] = STATE(253), - [sym_associated_type] = STATE(253), - [sym_let_declaration] = STATE(253), - [sym_use_declaration] = STATE(253), - [sym_extern_modifier] = STATE(1504), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2339), - [sym_generic_type_with_turbofish] = STATE(2341), - [sym_macro_invocation] = STATE(253), - [sym_scoped_identifier] = STATE(2242), - [aux_sym_declaration_list_repeat1] = STATE(253), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_RBRACK] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_u8] = ACTIONS(974), + [anon_sym_i8] = ACTIONS(974), + [anon_sym_u16] = ACTIONS(974), + [anon_sym_i16] = ACTIONS(974), + [anon_sym_u32] = ACTIONS(974), + [anon_sym_i32] = ACTIONS(974), + [anon_sym_u64] = ACTIONS(974), + [anon_sym_i64] = ACTIONS(974), + [anon_sym_u128] = ACTIONS(974), + [anon_sym_i128] = ACTIONS(974), + [anon_sym_isize] = ACTIONS(974), + [anon_sym_usize] = ACTIONS(974), + [anon_sym_f32] = ACTIONS(974), + [anon_sym_f64] = ACTIONS(974), + [anon_sym_bool] = ACTIONS(974), + [anon_sym_str] = ACTIONS(974), + [anon_sym_char] = ACTIONS(974), + [aux_sym__non_special_token_token1] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_async] = ACTIONS(974), + [anon_sym_await] = ACTIONS(974), + [anon_sym_break] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_default] = ACTIONS(974), + [anon_sym_enum] = ACTIONS(974), + [anon_sym_fn] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_impl] = ACTIONS(974), + [anon_sym_let] = ACTIONS(974), + [anon_sym_loop] = ACTIONS(974), + [anon_sym_match] = ACTIONS(974), + [anon_sym_mod] = ACTIONS(974), + [anon_sym_pub] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_static] = ACTIONS(974), + [anon_sym_struct] = ACTIONS(974), + [anon_sym_trait] = ACTIONS(974), + [anon_sym_type] = ACTIONS(974), + [anon_sym_union] = ACTIONS(974), + [anon_sym_unsafe] = ACTIONS(974), + [anon_sym_use] = ACTIONS(974), + [anon_sym_where] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [sym_mutable_specifier] = ACTIONS(974), + [sym_integer_literal] = ACTIONS(991), + [aux_sym_string_literal_token1] = ACTIONS(994), + [sym_char_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(974), + [sym_super] = ACTIONS(974), + [sym_crate] = ACTIONS(974), + [sym_metavariable] = ACTIONS(1002), + [sym_raw_string_literal] = ACTIONS(991), + [sym_float_literal] = ACTIONS(991), + [sym_block_comment] = ACTIONS(3), + }, + [250] = { + [sym_empty_statement] = STATE(248), + [sym_macro_definition] = STATE(248), + [sym_attribute_item] = STATE(248), + [sym_inner_attribute_item] = STATE(248), + [sym_mod_item] = STATE(248), + [sym_foreign_mod_item] = STATE(248), + [sym_struct_item] = STATE(248), + [sym_union_item] = STATE(248), + [sym_enum_item] = STATE(248), + [sym_extern_crate_declaration] = STATE(248), + [sym_const_item] = STATE(248), + [sym_static_item] = STATE(248), + [sym_type_item] = STATE(248), + [sym_function_item] = STATE(248), + [sym_function_signature_item] = STATE(248), + [sym_function_modifiers] = STATE(2548), + [sym_impl_item] = STATE(248), + [sym_trait_item] = STATE(248), + [sym_associated_type] = STATE(248), + [sym_let_declaration] = STATE(248), + [sym_use_declaration] = STATE(248), + [sym_extern_modifier] = STATE(1533), + [sym_visibility_modifier] = STATE(1351), + [sym_bracketed_type] = STATE(2362), + [sym_generic_type_with_turbofish] = STATE(2357), + [sym_macro_invocation] = STATE(248), + [sym_scoped_identifier] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(248), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(926), [anon_sym_macro_rules_BANG] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(1005), [anon_sym_u8] = ACTIONS(932), [anon_sym_i8] = ACTIONS(932), [anon_sym_u16] = ACTIONS(932), @@ -41246,7 +41403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), }, - [250] = { + [251] = { [sym_empty_statement] = STATE(253), [sym_macro_definition] = STATE(253), [sym_attribute_item] = STATE(253), @@ -41262,24 +41419,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(253), [sym_function_item] = STATE(253), [sym_function_signature_item] = STATE(253), - [sym_function_modifiers] = STATE(2525), + [sym_function_modifiers] = STATE(2548), [sym_impl_item] = STATE(253), [sym_trait_item] = STATE(253), [sym_associated_type] = STATE(253), [sym_let_declaration] = STATE(253), [sym_use_declaration] = STATE(253), - [sym_extern_modifier] = STATE(1504), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2339), - [sym_generic_type_with_turbofish] = STATE(2341), + [sym_extern_modifier] = STATE(1533), + [sym_visibility_modifier] = STATE(1351), + [sym_bracketed_type] = STATE(2362), + [sym_generic_type_with_turbofish] = STATE(2357), [sym_macro_invocation] = STATE(253), - [sym_scoped_identifier] = STATE(2242), + [sym_scoped_identifier] = STATE(2273), [aux_sym_declaration_list_repeat1] = STATE(253), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(926), [anon_sym_macro_rules_BANG] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(1007), [anon_sym_u8] = ACTIONS(932), [anon_sym_i8] = ACTIONS(932), [anon_sym_u16] = ACTIONS(932), @@ -41324,118 +41481,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), }, - [251] = { - [sym__token_pattern] = STATE(251), - [sym_token_tree_pattern] = STATE(251), - [sym_token_binding_pattern] = STATE(251), - [sym_token_repetition_pattern] = STATE(251), - [sym__literal] = STATE(251), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_RBRACK] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_u8] = ACTIONS(978), - [anon_sym_i8] = ACTIONS(978), - [anon_sym_u16] = ACTIONS(978), - [anon_sym_i16] = ACTIONS(978), - [anon_sym_u32] = ACTIONS(978), - [anon_sym_i32] = ACTIONS(978), - [anon_sym_u64] = ACTIONS(978), - [anon_sym_i64] = ACTIONS(978), - [anon_sym_u128] = ACTIONS(978), - [anon_sym_i128] = ACTIONS(978), - [anon_sym_isize] = ACTIONS(978), - [anon_sym_usize] = ACTIONS(978), - [anon_sym_f32] = ACTIONS(978), - [anon_sym_f64] = ACTIONS(978), - [anon_sym_bool] = ACTIONS(978), - [anon_sym_str] = ACTIONS(978), - [anon_sym_char] = ACTIONS(978), - [aux_sym__non_special_token_token1] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_async] = ACTIONS(978), - [anon_sym_await] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_impl] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_mod] = ACTIONS(978), - [anon_sym_pub] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_static] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_trait] = ACTIONS(978), - [anon_sym_type] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_unsafe] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_where] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [sym_mutable_specifier] = ACTIONS(978), - [sym_integer_literal] = ACTIONS(995), - [aux_sym_string_literal_token1] = ACTIONS(998), - [sym_char_literal] = ACTIONS(995), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(978), - [sym_metavariable] = ACTIONS(1006), - [sym_raw_string_literal] = ACTIONS(995), - [sym_float_literal] = ACTIONS(995), + [252] = { + [sym_empty_statement] = STATE(252), + [sym_macro_definition] = STATE(252), + [sym_attribute_item] = STATE(252), + [sym_inner_attribute_item] = STATE(252), + [sym_mod_item] = STATE(252), + [sym_foreign_mod_item] = STATE(252), + [sym_struct_item] = STATE(252), + [sym_union_item] = STATE(252), + [sym_enum_item] = STATE(252), + [sym_extern_crate_declaration] = STATE(252), + [sym_const_item] = STATE(252), + [sym_static_item] = STATE(252), + [sym_type_item] = STATE(252), + [sym_function_item] = STATE(252), + [sym_function_signature_item] = STATE(252), + [sym_function_modifiers] = STATE(2548), + [sym_impl_item] = STATE(252), + [sym_trait_item] = STATE(252), + [sym_associated_type] = STATE(252), + [sym_let_declaration] = STATE(252), + [sym_use_declaration] = STATE(252), + [sym_extern_modifier] = STATE(1533), + [sym_visibility_modifier] = STATE(1351), + [sym_bracketed_type] = STATE(2362), + [sym_generic_type_with_turbofish] = STATE(2357), + [sym_macro_invocation] = STATE(252), + [sym_scoped_identifier] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(252), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_macro_rules_BANG] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_u8] = ACTIONS(1020), + [anon_sym_i8] = ACTIONS(1020), + [anon_sym_u16] = ACTIONS(1020), + [anon_sym_i16] = ACTIONS(1020), + [anon_sym_u32] = ACTIONS(1020), + [anon_sym_i32] = ACTIONS(1020), + [anon_sym_u64] = ACTIONS(1020), + [anon_sym_i64] = ACTIONS(1020), + [anon_sym_u128] = ACTIONS(1020), + [anon_sym_i128] = ACTIONS(1020), + [anon_sym_isize] = ACTIONS(1020), + [anon_sym_usize] = ACTIONS(1020), + [anon_sym_f32] = ACTIONS(1020), + [anon_sym_f64] = ACTIONS(1020), + [anon_sym_bool] = ACTIONS(1020), + [anon_sym_str] = ACTIONS(1020), + [anon_sym_char] = ACTIONS(1020), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(1035), + [anon_sym_impl] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1044), + [anon_sym_pub] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1050), + [anon_sym_struct] = ACTIONS(1053), + [anon_sym_trait] = ACTIONS(1056), + [anon_sym_type] = ACTIONS(1059), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_unsafe] = ACTIONS(1065), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(1071), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(1080), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1083), + [sym_super] = ACTIONS(1083), + [sym_crate] = ACTIONS(1086), + [sym_metavariable] = ACTIONS(1089), [sym_block_comment] = ACTIONS(3), }, - [252] = { - [sym_empty_statement] = STATE(250), - [sym_macro_definition] = STATE(250), - [sym_attribute_item] = STATE(250), - [sym_inner_attribute_item] = STATE(250), - [sym_mod_item] = STATE(250), - [sym_foreign_mod_item] = STATE(250), - [sym_struct_item] = STATE(250), - [sym_union_item] = STATE(250), - [sym_enum_item] = STATE(250), - [sym_extern_crate_declaration] = STATE(250), - [sym_const_item] = STATE(250), - [sym_static_item] = STATE(250), - [sym_type_item] = STATE(250), - [sym_function_item] = STATE(250), - [sym_function_signature_item] = STATE(250), - [sym_function_modifiers] = STATE(2525), - [sym_impl_item] = STATE(250), - [sym_trait_item] = STATE(250), - [sym_associated_type] = STATE(250), - [sym_let_declaration] = STATE(250), - [sym_use_declaration] = STATE(250), - [sym_extern_modifier] = STATE(1504), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2339), - [sym_generic_type_with_turbofish] = STATE(2341), - [sym_macro_invocation] = STATE(250), - [sym_scoped_identifier] = STATE(2242), - [aux_sym_declaration_list_repeat1] = STATE(250), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [253] = { + [sym_empty_statement] = STATE(252), + [sym_macro_definition] = STATE(252), + [sym_attribute_item] = STATE(252), + [sym_inner_attribute_item] = STATE(252), + [sym_mod_item] = STATE(252), + [sym_foreign_mod_item] = STATE(252), + [sym_struct_item] = STATE(252), + [sym_union_item] = STATE(252), + [sym_enum_item] = STATE(252), + [sym_extern_crate_declaration] = STATE(252), + [sym_const_item] = STATE(252), + [sym_static_item] = STATE(252), + [sym_type_item] = STATE(252), + [sym_function_item] = STATE(252), + [sym_function_signature_item] = STATE(252), + [sym_function_modifiers] = STATE(2548), + [sym_impl_item] = STATE(252), + [sym_trait_item] = STATE(252), + [sym_associated_type] = STATE(252), + [sym_let_declaration] = STATE(252), + [sym_use_declaration] = STATE(252), + [sym_extern_modifier] = STATE(1533), + [sym_visibility_modifier] = STATE(1351), + [sym_bracketed_type] = STATE(2362), + [sym_generic_type_with_turbofish] = STATE(2357), + [sym_macro_invocation] = STATE(252), + [sym_scoped_identifier] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(252), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(926), [anon_sym_macro_rules_BANG] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1092), [anon_sym_u8] = ACTIONS(932), [anon_sym_i8] = ACTIONS(932), [anon_sym_u16] = ACTIONS(932), @@ -41480,84 +41637,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), }, - [253] = { - [sym_empty_statement] = STATE(253), - [sym_macro_definition] = STATE(253), - [sym_attribute_item] = STATE(253), - [sym_inner_attribute_item] = STATE(253), - [sym_mod_item] = STATE(253), - [sym_foreign_mod_item] = STATE(253), - [sym_struct_item] = STATE(253), - [sym_union_item] = STATE(253), - [sym_enum_item] = STATE(253), - [sym_extern_crate_declaration] = STATE(253), - [sym_const_item] = STATE(253), - [sym_static_item] = STATE(253), - [sym_type_item] = STATE(253), - [sym_function_item] = STATE(253), - [sym_function_signature_item] = STATE(253), - [sym_function_modifiers] = STATE(2525), - [sym_impl_item] = STATE(253), - [sym_trait_item] = STATE(253), - [sym_associated_type] = STATE(253), - [sym_let_declaration] = STATE(253), - [sym_use_declaration] = STATE(253), - [sym_extern_modifier] = STATE(1504), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2339), - [sym_generic_type_with_turbofish] = STATE(2341), - [sym_macro_invocation] = STATE(253), - [sym_scoped_identifier] = STATE(2242), - [aux_sym_declaration_list_repeat1] = STATE(253), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_macro_rules_BANG] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym_async] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1040), - [anon_sym_let] = ACTIONS(1043), - [anon_sym_mod] = ACTIONS(1046), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1055), - [anon_sym_trait] = ACTIONS(1058), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_unsafe] = ACTIONS(1067), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(1073), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(1082), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1085), - [sym_super] = ACTIONS(1085), - [sym_crate] = ACTIONS(1088), - [sym_metavariable] = ACTIONS(1091), - [sym_block_comment] = ACTIONS(3), - }, [254] = { [ts_builtin_sym_end] = ACTIONS(1094), [sym_identifier] = ACTIONS(1096), @@ -42868,732 +42947,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [271] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_macro_rules_BANG] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_RBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_u8] = ACTIONS(1164), - [anon_sym_i8] = ACTIONS(1164), - [anon_sym_u16] = ACTIONS(1164), - [anon_sym_i16] = ACTIONS(1164), - [anon_sym_u32] = ACTIONS(1164), - [anon_sym_i32] = ACTIONS(1164), - [anon_sym_u64] = ACTIONS(1164), - [anon_sym_i64] = ACTIONS(1164), - [anon_sym_u128] = ACTIONS(1164), - [anon_sym_i128] = ACTIONS(1164), - [anon_sym_isize] = ACTIONS(1164), - [anon_sym_usize] = ACTIONS(1164), - [anon_sym_f32] = ACTIONS(1164), - [anon_sym_f64] = ACTIONS(1164), - [anon_sym_bool] = ACTIONS(1164), - [anon_sym_str] = ACTIONS(1164), - [anon_sym_char] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_fn] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_impl] = ACTIONS(1164), - [anon_sym_let] = ACTIONS(1164), - [anon_sym_loop] = ACTIONS(1164), - [anon_sym_match] = ACTIONS(1164), - [anon_sym_mod] = ACTIONS(1164), - [anon_sym_pub] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_struct] = ACTIONS(1164), - [anon_sym_trait] = ACTIONS(1164), - [anon_sym_type] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_unsafe] = ACTIONS(1164), - [anon_sym_use] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym_LT] = ACTIONS(1162), - [anon_sym_COLON_COLON] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_DOT_DOT] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1162), - [anon_sym_yield] = ACTIONS(1164), - [anon_sym_move] = ACTIONS(1164), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1162), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1164), - [anon_sym_false] = ACTIONS(1164), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1164), - [sym_super] = ACTIONS(1164), - [sym_crate] = ACTIONS(1164), - [sym_metavariable] = ACTIONS(1162), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), - [sym_block_comment] = ACTIONS(3), - }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_macro_rules_BANG] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1166), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(487), + [sym_last_match_arm] = STATE(2418), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_async] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_fn] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_impl] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_pub] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_trait] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_unsafe] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_LT] = ACTIONS(1166), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_DOT_DOT] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_yield] = ACTIONS(1168), - [anon_sym_move] = ACTIONS(1168), - [sym_integer_literal] = ACTIONS(1166), - [aux_sym_string_literal_token1] = ACTIONS(1166), - [sym_char_literal] = ACTIONS(1166), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1168), - [sym_super] = ACTIONS(1168), - [sym_crate] = ACTIONS(1168), - [sym_metavariable] = ACTIONS(1166), - [sym_raw_string_literal] = ACTIONS(1166), - [sym_float_literal] = ACTIONS(1166), - [sym_block_comment] = ACTIONS(3), - }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_macro_rules_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_u8] = ACTIONS(1172), - [anon_sym_i8] = ACTIONS(1172), - [anon_sym_u16] = ACTIONS(1172), - [anon_sym_i16] = ACTIONS(1172), - [anon_sym_u32] = ACTIONS(1172), - [anon_sym_i32] = ACTIONS(1172), - [anon_sym_u64] = ACTIONS(1172), - [anon_sym_i64] = ACTIONS(1172), - [anon_sym_u128] = ACTIONS(1172), - [anon_sym_i128] = ACTIONS(1172), - [anon_sym_isize] = ACTIONS(1172), - [anon_sym_usize] = ACTIONS(1172), - [anon_sym_f32] = ACTIONS(1172), - [anon_sym_f64] = ACTIONS(1172), - [anon_sym_bool] = ACTIONS(1172), - [anon_sym_str] = ACTIONS(1172), - [anon_sym_char] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_async] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), [anon_sym_const] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_fn] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_impl] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_pub] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_trait] = ACTIONS(1172), - [anon_sym_type] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_unsafe] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_COLON_COLON] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_yield] = ACTIONS(1172), - [anon_sym_move] = ACTIONS(1172), - [sym_integer_literal] = ACTIONS(1170), - [aux_sym_string_literal_token1] = ACTIONS(1170), - [sym_char_literal] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1172), - [sym_super] = ACTIONS(1172), - [sym_crate] = ACTIONS(1172), - [sym_metavariable] = ACTIONS(1170), - [sym_raw_string_literal] = ACTIONS(1170), - [sym_float_literal] = ACTIONS(1170), - [sym_block_comment] = ACTIONS(3), - }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_macro_rules_BANG] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_u8] = ACTIONS(1176), - [anon_sym_i8] = ACTIONS(1176), - [anon_sym_u16] = ACTIONS(1176), - [anon_sym_i16] = ACTIONS(1176), - [anon_sym_u32] = ACTIONS(1176), - [anon_sym_i32] = ACTIONS(1176), - [anon_sym_u64] = ACTIONS(1176), - [anon_sym_i64] = ACTIONS(1176), - [anon_sym_u128] = ACTIONS(1176), - [anon_sym_i128] = ACTIONS(1176), - [anon_sym_isize] = ACTIONS(1176), - [anon_sym_usize] = ACTIONS(1176), - [anon_sym_f32] = ACTIONS(1176), - [anon_sym_f64] = ACTIONS(1176), - [anon_sym_bool] = ACTIONS(1176), - [anon_sym_str] = ACTIONS(1176), - [anon_sym_char] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_async] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_fn] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_impl] = ACTIONS(1176), - [anon_sym_let] = ACTIONS(1176), - [anon_sym_loop] = ACTIONS(1176), - [anon_sym_match] = ACTIONS(1176), - [anon_sym_mod] = ACTIONS(1176), - [anon_sym_pub] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_trait] = ACTIONS(1176), - [anon_sym_type] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_unsafe] = ACTIONS(1176), - [anon_sym_use] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1174), - [anon_sym_COLON_COLON] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PIPE] = ACTIONS(1174), - [anon_sym_yield] = ACTIONS(1176), - [anon_sym_move] = ACTIONS(1176), - [sym_integer_literal] = ACTIONS(1174), - [aux_sym_string_literal_token1] = ACTIONS(1174), - [sym_char_literal] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1176), - [sym_super] = ACTIONS(1176), - [sym_crate] = ACTIONS(1176), - [sym_metavariable] = ACTIONS(1174), - [sym_raw_string_literal] = ACTIONS(1174), - [sym_float_literal] = ACTIONS(1174), - [sym_block_comment] = ACTIONS(3), - }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym_macro_rules_BANG] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1180), - [anon_sym_i8] = ACTIONS(1180), - [anon_sym_u16] = ACTIONS(1180), - [anon_sym_i16] = ACTIONS(1180), - [anon_sym_u32] = ACTIONS(1180), - [anon_sym_i32] = ACTIONS(1180), - [anon_sym_u64] = ACTIONS(1180), - [anon_sym_i64] = ACTIONS(1180), - [anon_sym_u128] = ACTIONS(1180), - [anon_sym_i128] = ACTIONS(1180), - [anon_sym_isize] = ACTIONS(1180), - [anon_sym_usize] = ACTIONS(1180), - [anon_sym_f32] = ACTIONS(1180), - [anon_sym_f64] = ACTIONS(1180), - [anon_sym_bool] = ACTIONS(1180), - [anon_sym_str] = ACTIONS(1180), - [anon_sym_char] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_fn] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1180), - [anon_sym_let] = ACTIONS(1180), - [anon_sym_loop] = ACTIONS(1180), - [anon_sym_match] = ACTIONS(1180), - [anon_sym_mod] = ACTIONS(1180), - [anon_sym_pub] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_struct] = ACTIONS(1180), - [anon_sym_trait] = ACTIONS(1180), - [anon_sym_type] = ACTIONS(1180), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1180), - [anon_sym_use] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1178), - [aux_sym_string_literal_token1] = ACTIONS(1178), - [sym_char_literal] = ACTIONS(1178), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1180), [sym_super] = ACTIONS(1180), [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1178), - [sym_raw_string_literal] = ACTIONS(1178), - [sym_float_literal] = ACTIONS(1178), - [sym_block_comment] = ACTIONS(3), - }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym_macro_rules_BANG] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_RBRACE] = ACTIONS(1182), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_u8] = ACTIONS(1184), - [anon_sym_i8] = ACTIONS(1184), - [anon_sym_u16] = ACTIONS(1184), - [anon_sym_i16] = ACTIONS(1184), - [anon_sym_u32] = ACTIONS(1184), - [anon_sym_i32] = ACTIONS(1184), - [anon_sym_u64] = ACTIONS(1184), - [anon_sym_i64] = ACTIONS(1184), - [anon_sym_u128] = ACTIONS(1184), - [anon_sym_i128] = ACTIONS(1184), - [anon_sym_isize] = ACTIONS(1184), - [anon_sym_usize] = ACTIONS(1184), - [anon_sym_f32] = ACTIONS(1184), - [anon_sym_f64] = ACTIONS(1184), - [anon_sym_bool] = ACTIONS(1184), - [anon_sym_str] = ACTIONS(1184), - [anon_sym_char] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_async] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_default] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_fn] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_impl] = ACTIONS(1184), - [anon_sym_let] = ACTIONS(1184), - [anon_sym_loop] = ACTIONS(1184), - [anon_sym_match] = ACTIONS(1184), - [anon_sym_mod] = ACTIONS(1184), - [anon_sym_pub] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_struct] = ACTIONS(1184), - [anon_sym_trait] = ACTIONS(1184), - [anon_sym_type] = ACTIONS(1184), - [anon_sym_union] = ACTIONS(1184), - [anon_sym_unsafe] = ACTIONS(1184), - [anon_sym_use] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_extern] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1182), - [anon_sym_COLON_COLON] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1182), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_move] = ACTIONS(1184), - [sym_integer_literal] = ACTIONS(1182), - [aux_sym_string_literal_token1] = ACTIONS(1182), - [sym_char_literal] = ACTIONS(1182), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(1182), - [sym_float_literal] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [sym_identifier] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_macro_rules_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_u8] = ACTIONS(1188), - [anon_sym_i8] = ACTIONS(1188), - [anon_sym_u16] = ACTIONS(1188), - [anon_sym_i16] = ACTIONS(1188), - [anon_sym_u32] = ACTIONS(1188), - [anon_sym_i32] = ACTIONS(1188), - [anon_sym_u64] = ACTIONS(1188), - [anon_sym_i64] = ACTIONS(1188), - [anon_sym_u128] = ACTIONS(1188), - [anon_sym_i128] = ACTIONS(1188), - [anon_sym_isize] = ACTIONS(1188), - [anon_sym_usize] = ACTIONS(1188), - [anon_sym_f32] = ACTIONS(1188), - [anon_sym_f64] = ACTIONS(1188), - [anon_sym_bool] = ACTIONS(1188), - [anon_sym_str] = ACTIONS(1188), - [anon_sym_char] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_async] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_impl] = ACTIONS(1188), - [anon_sym_let] = ACTIONS(1188), - [anon_sym_loop] = ACTIONS(1188), - [anon_sym_match] = ACTIONS(1188), - [anon_sym_mod] = ACTIONS(1188), - [anon_sym_pub] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_struct] = ACTIONS(1188), - [anon_sym_trait] = ACTIONS(1188), - [anon_sym_type] = ACTIONS(1188), - [anon_sym_union] = ACTIONS(1188), - [anon_sym_unsafe] = ACTIONS(1188), - [anon_sym_use] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_POUND] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_COLON_COLON] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_yield] = ACTIONS(1188), - [anon_sym_move] = ACTIONS(1188), - [sym_integer_literal] = ACTIONS(1186), - [aux_sym_string_literal_token1] = ACTIONS(1186), - [sym_char_literal] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1188), - [sym_super] = ACTIONS(1188), - [sym_crate] = ACTIONS(1188), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(1186), - [sym_float_literal] = ACTIONS(1186), + [272] = { + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1184), + [anon_sym_macro_rules_BANG] = ACTIONS(1184), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1184), + [anon_sym_u8] = ACTIONS(1186), + [anon_sym_i8] = ACTIONS(1186), + [anon_sym_u16] = ACTIONS(1186), + [anon_sym_i16] = ACTIONS(1186), + [anon_sym_u32] = ACTIONS(1186), + [anon_sym_i32] = ACTIONS(1186), + [anon_sym_u64] = ACTIONS(1186), + [anon_sym_i64] = ACTIONS(1186), + [anon_sym_u128] = ACTIONS(1186), + [anon_sym_i128] = ACTIONS(1186), + [anon_sym_isize] = ACTIONS(1186), + [anon_sym_usize] = ACTIONS(1186), + [anon_sym_f32] = ACTIONS(1186), + [anon_sym_f64] = ACTIONS(1186), + [anon_sym_bool] = ACTIONS(1186), + [anon_sym_str] = ACTIONS(1186), + [anon_sym_char] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(1186), + [anon_sym_async] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_fn] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_impl] = ACTIONS(1186), + [anon_sym_let] = ACTIONS(1186), + [anon_sym_loop] = ACTIONS(1186), + [anon_sym_match] = ACTIONS(1186), + [anon_sym_mod] = ACTIONS(1186), + [anon_sym_pub] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_trait] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1186), + [anon_sym_unsafe] = ACTIONS(1186), + [anon_sym_use] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_COLON_COLON] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [anon_sym_yield] = ACTIONS(1186), + [anon_sym_move] = ACTIONS(1186), + [sym_integer_literal] = ACTIONS(1184), + [aux_sym_string_literal_token1] = ACTIONS(1184), + [sym_char_literal] = ACTIONS(1184), + [anon_sym_true] = ACTIONS(1186), + [anon_sym_false] = ACTIONS(1186), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1186), + [sym_super] = ACTIONS(1186), + [sym_crate] = ACTIONS(1186), + [sym_metavariable] = ACTIONS(1184), + [sym_raw_string_literal] = ACTIONS(1184), + [sym_float_literal] = ACTIONS(1184), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_macro_rules_BANG] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1192), - [anon_sym_i8] = ACTIONS(1192), - [anon_sym_u16] = ACTIONS(1192), - [anon_sym_i16] = ACTIONS(1192), - [anon_sym_u32] = ACTIONS(1192), - [anon_sym_i32] = ACTIONS(1192), - [anon_sym_u64] = ACTIONS(1192), - [anon_sym_i64] = ACTIONS(1192), - [anon_sym_u128] = ACTIONS(1192), - [anon_sym_i128] = ACTIONS(1192), - [anon_sym_isize] = ACTIONS(1192), - [anon_sym_usize] = ACTIONS(1192), - [anon_sym_f32] = ACTIONS(1192), - [anon_sym_f64] = ACTIONS(1192), - [anon_sym_bool] = ACTIONS(1192), - [anon_sym_str] = ACTIONS(1192), - [anon_sym_char] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_fn] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_impl] = ACTIONS(1192), - [anon_sym_let] = ACTIONS(1192), - [anon_sym_loop] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1192), - [anon_sym_mod] = ACTIONS(1192), - [anon_sym_pub] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_struct] = ACTIONS(1192), - [anon_sym_trait] = ACTIONS(1192), - [anon_sym_type] = ACTIONS(1192), - [anon_sym_union] = ACTIONS(1192), - [anon_sym_unsafe] = ACTIONS(1192), - [anon_sym_use] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_POUND] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_COLON_COLON] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_move] = ACTIONS(1192), - [sym_integer_literal] = ACTIONS(1190), - [aux_sym_string_literal_token1] = ACTIONS(1190), - [sym_char_literal] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1192), - [sym_super] = ACTIONS(1192), - [sym_crate] = ACTIONS(1192), - [sym_metavariable] = ACTIONS(1190), - [sym_raw_string_literal] = ACTIONS(1190), - [sym_float_literal] = ACTIONS(1190), + [273] = { + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_macro_rules_BANG] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_POUND] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_COLON_COLON] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_move] = ACTIONS(1190), + [sym_integer_literal] = ACTIONS(1188), + [aux_sym_string_literal_token1] = ACTIONS(1188), + [sym_char_literal] = ACTIONS(1188), + [anon_sym_true] = ACTIONS(1190), + [anon_sym_false] = ACTIONS(1190), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1188), + [sym_raw_string_literal] = ACTIONS(1188), + [sym_float_literal] = ACTIONS(1188), [sym_block_comment] = ACTIONS(3), }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_macro_rules_BANG] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_fn] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_impl] = ACTIONS(1196), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_loop] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_mod] = ACTIONS(1196), - [anon_sym_pub] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_trait] = ACTIONS(1196), - [anon_sym_type] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_unsafe] = ACTIONS(1196), - [anon_sym_use] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_yield] = ACTIONS(1196), - [anon_sym_move] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym_raw_string_literal] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), + [274] = { + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_macro_rules_BANG] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_u8] = ACTIONS(1194), + [anon_sym_i8] = ACTIONS(1194), + [anon_sym_u16] = ACTIONS(1194), + [anon_sym_i16] = ACTIONS(1194), + [anon_sym_u32] = ACTIONS(1194), + [anon_sym_i32] = ACTIONS(1194), + [anon_sym_u64] = ACTIONS(1194), + [anon_sym_i64] = ACTIONS(1194), + [anon_sym_u128] = ACTIONS(1194), + [anon_sym_i128] = ACTIONS(1194), + [anon_sym_isize] = ACTIONS(1194), + [anon_sym_usize] = ACTIONS(1194), + [anon_sym_f32] = ACTIONS(1194), + [anon_sym_f64] = ACTIONS(1194), + [anon_sym_bool] = ACTIONS(1194), + [anon_sym_str] = ACTIONS(1194), + [anon_sym_char] = ACTIONS(1194), + [anon_sym_SQUOTE] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_fn] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_impl] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_loop] = ACTIONS(1194), + [anon_sym_match] = ACTIONS(1194), + [anon_sym_mod] = ACTIONS(1194), + [anon_sym_pub] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_trait] = ACTIONS(1194), + [anon_sym_type] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_unsafe] = ACTIONS(1194), + [anon_sym_use] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_COLON_COLON] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_move] = ACTIONS(1194), + [sym_integer_literal] = ACTIONS(1192), + [aux_sym_string_literal_token1] = ACTIONS(1192), + [sym_char_literal] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1194), + [sym_super] = ACTIONS(1194), + [sym_crate] = ACTIONS(1194), + [sym_metavariable] = ACTIONS(1192), + [sym_raw_string_literal] = ACTIONS(1192), + [sym_float_literal] = ACTIONS(1192), [sym_block_comment] = ACTIONS(3), }, - [280] = { - [sym_attribute_item] = STATE(533), - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_macro_invocation] = STATE(2345), - [sym_scoped_identifier] = STATE(1557), - [sym_scoped_type_identifier] = STATE(1913), - [sym_match_arm] = STATE(488), - [sym_last_match_arm] = STATE(2402), - [sym_match_pattern] = STATE(2358), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1933), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(533), - [aux_sym_match_block_repeat1] = STATE(488), + [275] = { + [ts_builtin_sym_end] = ACTIONS(1196), [sym_identifier] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_macro_rules_BANG] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_u8] = ACTIONS(1198), + [anon_sym_i8] = ACTIONS(1198), + [anon_sym_u16] = ACTIONS(1198), + [anon_sym_i16] = ACTIONS(1198), + [anon_sym_u32] = ACTIONS(1198), + [anon_sym_i32] = ACTIONS(1198), + [anon_sym_u64] = ACTIONS(1198), + [anon_sym_i64] = ACTIONS(1198), + [anon_sym_u128] = ACTIONS(1198), + [anon_sym_i128] = ACTIONS(1198), + [anon_sym_isize] = ACTIONS(1198), + [anon_sym_usize] = ACTIONS(1198), + [anon_sym_f32] = ACTIONS(1198), + [anon_sym_f64] = ACTIONS(1198), + [anon_sym_bool] = ACTIONS(1198), + [anon_sym_str] = ACTIONS(1198), + [anon_sym_char] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_async] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_fn] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_impl] = ACTIONS(1198), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_loop] = ACTIONS(1198), + [anon_sym_match] = ACTIONS(1198), + [anon_sym_mod] = ACTIONS(1198), + [anon_sym_pub] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_trait] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_unsafe] = ACTIONS(1198), + [anon_sym_use] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_POUND] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_move] = ACTIONS(1198), + [sym_integer_literal] = ACTIONS(1196), + [aux_sym_string_literal_token1] = ACTIONS(1196), + [sym_char_literal] = ACTIONS(1196), + [anon_sym_true] = ACTIONS(1198), + [anon_sym_false] = ACTIONS(1198), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1198), + [sym_super] = ACTIONS(1198), + [sym_crate] = ACTIONS(1198), + [sym_metavariable] = ACTIONS(1196), + [sym_raw_string_literal] = ACTIONS(1196), + [sym_float_literal] = ACTIONS(1196), + [sym_block_comment] = ACTIONS(3), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym_macro_rules_BANG] = ACTIONS(1200), [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1202), + [anon_sym_i8] = ACTIONS(1202), + [anon_sym_u16] = ACTIONS(1202), + [anon_sym_i16] = ACTIONS(1202), + [anon_sym_u32] = ACTIONS(1202), + [anon_sym_i32] = ACTIONS(1202), + [anon_sym_u64] = ACTIONS(1202), + [anon_sym_i64] = ACTIONS(1202), + [anon_sym_u128] = ACTIONS(1202), + [anon_sym_i128] = ACTIONS(1202), + [anon_sym_isize] = ACTIONS(1202), + [anon_sym_usize] = ACTIONS(1202), + [anon_sym_f32] = ACTIONS(1202), + [anon_sym_f64] = ACTIONS(1202), + [anon_sym_bool] = ACTIONS(1202), + [anon_sym_str] = ACTIONS(1202), + [anon_sym_char] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_fn] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_impl] = ACTIONS(1202), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_loop] = ACTIONS(1202), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_mod] = ACTIONS(1202), + [anon_sym_pub] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_trait] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_unsafe] = ACTIONS(1202), + [anon_sym_use] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_POUND] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PIPE] = ACTIONS(1200), + [anon_sym_yield] = ACTIONS(1202), + [anon_sym_move] = ACTIONS(1202), + [sym_integer_literal] = ACTIONS(1200), + [aux_sym_string_literal_token1] = ACTIONS(1200), + [sym_char_literal] = ACTIONS(1200), + [anon_sym_true] = ACTIONS(1202), + [anon_sym_false] = ACTIONS(1202), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_crate] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(1200), + [sym_raw_string_literal] = ACTIONS(1200), + [sym_float_literal] = ACTIONS(1200), + [sym_block_comment] = ACTIONS(3), + }, + [277] = { + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym_macro_rules_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1204), [anon_sym_u8] = ACTIONS(1206), [anon_sym_i8] = ACTIONS(1206), [anon_sym_u16] = ACTIONS(1206), @@ -43611,30 +43435,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1206), [anon_sym_str] = ACTIONS(1206), [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_async] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_fn] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_impl] = ACTIONS(1206), + [anon_sym_let] = ACTIONS(1206), + [anon_sym_loop] = ACTIONS(1206), + [anon_sym_match] = ACTIONS(1206), + [anon_sym_mod] = ACTIONS(1206), + [anon_sym_pub] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_trait] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1206), + [anon_sym_union] = ACTIONS(1206), + [anon_sym_unsafe] = ACTIONS(1206), + [anon_sym_use] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_POUND] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1204), + [anon_sym_COLON_COLON] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1204), + [anon_sym_yield] = ACTIONS(1206), + [anon_sym_move] = ACTIONS(1206), + [sym_integer_literal] = ACTIONS(1204), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1204), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1206), + [sym_super] = ACTIONS(1206), + [sym_crate] = ACTIONS(1206), + [sym_metavariable] = ACTIONS(1204), + [sym_raw_string_literal] = ACTIONS(1204), + [sym_float_literal] = ACTIONS(1204), + [sym_block_comment] = ACTIONS(3), + }, + [278] = { + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_macro_rules_BANG] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_u8] = ACTIONS(1210), + [anon_sym_i8] = ACTIONS(1210), + [anon_sym_u16] = ACTIONS(1210), + [anon_sym_i16] = ACTIONS(1210), + [anon_sym_u32] = ACTIONS(1210), + [anon_sym_i32] = ACTIONS(1210), + [anon_sym_u64] = ACTIONS(1210), + [anon_sym_i64] = ACTIONS(1210), + [anon_sym_u128] = ACTIONS(1210), + [anon_sym_i128] = ACTIONS(1210), + [anon_sym_isize] = ACTIONS(1210), + [anon_sym_usize] = ACTIONS(1210), + [anon_sym_f32] = ACTIONS(1210), + [anon_sym_f64] = ACTIONS(1210), + [anon_sym_bool] = ACTIONS(1210), + [anon_sym_str] = ACTIONS(1210), + [anon_sym_char] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), [anon_sym_default] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_fn] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_impl] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1210), + [anon_sym_loop] = ACTIONS(1210), + [anon_sym_match] = ACTIONS(1210), + [anon_sym_mod] = ACTIONS(1210), + [anon_sym_pub] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_trait] = ACTIONS(1210), + [anon_sym_type] = ACTIONS(1210), [anon_sym_union] = ACTIONS(1210), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(1210), + [anon_sym_use] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1210), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_COLON_COLON] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PIPE] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1210), + [anon_sym_move] = ACTIONS(1210), + [sym_integer_literal] = ACTIONS(1208), + [aux_sym_string_literal_token1] = ACTIONS(1208), + [sym_char_literal] = ACTIONS(1208), + [anon_sym_true] = ACTIONS(1210), + [anon_sym_false] = ACTIONS(1210), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1210), + [sym_super] = ACTIONS(1210), + [sym_crate] = ACTIONS(1210), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1208), + [sym_float_literal] = ACTIONS(1208), + [sym_block_comment] = ACTIONS(3), + }, + [279] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_macro_rules_BANG] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_u8] = ACTIONS(1214), + [anon_sym_i8] = ACTIONS(1214), + [anon_sym_u16] = ACTIONS(1214), + [anon_sym_i16] = ACTIONS(1214), + [anon_sym_u32] = ACTIONS(1214), + [anon_sym_i32] = ACTIONS(1214), + [anon_sym_u64] = ACTIONS(1214), + [anon_sym_i64] = ACTIONS(1214), + [anon_sym_u128] = ACTIONS(1214), + [anon_sym_i128] = ACTIONS(1214), + [anon_sym_isize] = ACTIONS(1214), + [anon_sym_usize] = ACTIONS(1214), + [anon_sym_f32] = ACTIONS(1214), + [anon_sym_f64] = ACTIONS(1214), + [anon_sym_bool] = ACTIONS(1214), + [anon_sym_str] = ACTIONS(1214), + [anon_sym_char] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_async] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_fn] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_impl] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_loop] = ACTIONS(1214), + [anon_sym_match] = ACTIONS(1214), + [anon_sym_mod] = ACTIONS(1214), + [anon_sym_pub] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_trait] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_unsafe] = ACTIONS(1214), + [anon_sym_use] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1212), [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_DOT_DOT] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [anon_sym_move] = ACTIONS(1214), + [sym_integer_literal] = ACTIONS(1212), + [aux_sym_string_literal_token1] = ACTIONS(1212), + [sym_char_literal] = ACTIONS(1212), + [anon_sym_true] = ACTIONS(1214), + [anon_sym_false] = ACTIONS(1214), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1212), + [sym_raw_string_literal] = ACTIONS(1212), + [sym_float_literal] = ACTIONS(1212), + [sym_block_comment] = ACTIONS(3), + }, + [280] = { + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_macro_rules_BANG] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_fn] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_impl] = ACTIONS(1218), + [anon_sym_let] = ACTIONS(1218), + [anon_sym_loop] = ACTIONS(1218), + [anon_sym_match] = ACTIONS(1218), + [anon_sym_mod] = ACTIONS(1218), + [anon_sym_pub] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_trait] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1218), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_unsafe] = ACTIONS(1218), + [anon_sym_use] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym_LT] = ACTIONS(1216), + [anon_sym_COLON_COLON] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_DOT_DOT] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_yield] = ACTIONS(1218), + [anon_sym_move] = ACTIONS(1218), + [sym_integer_literal] = ACTIONS(1216), + [aux_sym_string_literal_token1] = ACTIONS(1216), + [sym_char_literal] = ACTIONS(1216), + [anon_sym_true] = ACTIONS(1218), + [anon_sym_false] = ACTIONS(1218), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1218), + [sym_super] = ACTIONS(1218), + [sym_crate] = ACTIONS(1218), + [sym_metavariable] = ACTIONS(1216), + [sym_raw_string_literal] = ACTIONS(1216), + [sym_float_literal] = ACTIONS(1216), [sym_block_comment] = ACTIONS(3), }, [281] = { @@ -49798,65 +49877,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [361] = { - [sym_attribute_item] = STATE(533), - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_macro_invocation] = STATE(2345), - [sym_scoped_identifier] = STATE(1557), - [sym_scoped_type_identifier] = STATE(1913), - [sym_match_arm] = STATE(491), - [sym_last_match_arm] = STATE(2354), - [sym_match_pattern] = STATE(2358), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1933), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(533), - [aux_sym_match_block_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(482), + [sym_last_match_arm] = STATE(2356), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(482), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -49866,10 +49945,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -51338,542 +51417,542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1618), - [sym_identifier] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_macro_rules_BANG] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(1618), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(491), + [sym_last_match_arm] = STATE(2544), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(491), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), [anon_sym_RBRACE] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_u8] = ACTIONS(1620), - [anon_sym_i8] = ACTIONS(1620), - [anon_sym_u16] = ACTIONS(1620), - [anon_sym_i16] = ACTIONS(1620), - [anon_sym_u32] = ACTIONS(1620), - [anon_sym_i32] = ACTIONS(1620), - [anon_sym_u64] = ACTIONS(1620), - [anon_sym_i64] = ACTIONS(1620), - [anon_sym_u128] = ACTIONS(1620), - [anon_sym_i128] = ACTIONS(1620), - [anon_sym_isize] = ACTIONS(1620), - [anon_sym_usize] = ACTIONS(1620), - [anon_sym_f32] = ACTIONS(1620), - [anon_sym_f64] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_str] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1620), - [anon_sym_async] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_default] = ACTIONS(1620), - [anon_sym_enum] = ACTIONS(1620), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_impl] = ACTIONS(1620), - [anon_sym_let] = ACTIONS(1620), - [anon_sym_loop] = ACTIONS(1620), - [anon_sym_match] = ACTIONS(1620), - [anon_sym_mod] = ACTIONS(1620), - [anon_sym_pub] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_struct] = ACTIONS(1620), - [anon_sym_trait] = ACTIONS(1620), - [anon_sym_type] = ACTIONS(1620), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1620), - [anon_sym_use] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_extern] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_COLON_COLON] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_DOT_DOT] = ACTIONS(1618), - [anon_sym_DASH] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_yield] = ACTIONS(1620), - [anon_sym_move] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1618), - [aux_sym_string_literal_token1] = ACTIONS(1618), - [sym_char_literal] = ACTIONS(1618), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1620), - [sym_super] = ACTIONS(1620), - [sym_crate] = ACTIONS(1620), - [sym_metavariable] = ACTIONS(1618), - [sym_raw_string_literal] = ACTIONS(1618), - [sym_float_literal] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1622), - [sym_identifier] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_macro_rules_BANG] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_u8] = ACTIONS(1624), - [anon_sym_i8] = ACTIONS(1624), - [anon_sym_u16] = ACTIONS(1624), - [anon_sym_i16] = ACTIONS(1624), - [anon_sym_u32] = ACTIONS(1624), - [anon_sym_i32] = ACTIONS(1624), - [anon_sym_u64] = ACTIONS(1624), - [anon_sym_i64] = ACTIONS(1624), - [anon_sym_u128] = ACTIONS(1624), - [anon_sym_i128] = ACTIONS(1624), - [anon_sym_isize] = ACTIONS(1624), - [anon_sym_usize] = ACTIONS(1624), - [anon_sym_f32] = ACTIONS(1624), - [anon_sym_f64] = ACTIONS(1624), - [anon_sym_bool] = ACTIONS(1624), - [anon_sym_str] = ACTIONS(1624), - [anon_sym_char] = ACTIONS(1624), - [anon_sym_SQUOTE] = ACTIONS(1624), - [anon_sym_async] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_default] = ACTIONS(1624), - [anon_sym_enum] = ACTIONS(1624), - [anon_sym_fn] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_impl] = ACTIONS(1624), - [anon_sym_let] = ACTIONS(1624), - [anon_sym_loop] = ACTIONS(1624), - [anon_sym_match] = ACTIONS(1624), - [anon_sym_mod] = ACTIONS(1624), - [anon_sym_pub] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_struct] = ACTIONS(1624), - [anon_sym_trait] = ACTIONS(1624), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_union] = ACTIONS(1624), - [anon_sym_unsafe] = ACTIONS(1624), - [anon_sym_use] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1622), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_extern] = ACTIONS(1624), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1622), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_yield] = ACTIONS(1624), - [anon_sym_move] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1622), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1622), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym_identifier] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_macro_rules_BANG] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_u8] = ACTIONS(1622), + [anon_sym_i8] = ACTIONS(1622), + [anon_sym_u16] = ACTIONS(1622), + [anon_sym_i16] = ACTIONS(1622), + [anon_sym_u32] = ACTIONS(1622), + [anon_sym_i32] = ACTIONS(1622), + [anon_sym_u64] = ACTIONS(1622), + [anon_sym_i64] = ACTIONS(1622), + [anon_sym_u128] = ACTIONS(1622), + [anon_sym_i128] = ACTIONS(1622), + [anon_sym_isize] = ACTIONS(1622), + [anon_sym_usize] = ACTIONS(1622), + [anon_sym_f32] = ACTIONS(1622), + [anon_sym_f64] = ACTIONS(1622), + [anon_sym_bool] = ACTIONS(1622), + [anon_sym_str] = ACTIONS(1622), + [anon_sym_char] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_async] = ACTIONS(1622), + [anon_sym_break] = ACTIONS(1622), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_continue] = ACTIONS(1622), + [anon_sym_default] = ACTIONS(1622), + [anon_sym_enum] = ACTIONS(1622), + [anon_sym_fn] = ACTIONS(1622), + [anon_sym_for] = ACTIONS(1622), + [anon_sym_if] = ACTIONS(1622), + [anon_sym_impl] = ACTIONS(1622), + [anon_sym_let] = ACTIONS(1622), + [anon_sym_loop] = ACTIONS(1622), + [anon_sym_match] = ACTIONS(1622), + [anon_sym_mod] = ACTIONS(1622), + [anon_sym_pub] = ACTIONS(1622), + [anon_sym_return] = ACTIONS(1622), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_struct] = ACTIONS(1622), + [anon_sym_trait] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_union] = ACTIONS(1622), + [anon_sym_unsafe] = ACTIONS(1622), + [anon_sym_use] = ACTIONS(1622), + [anon_sym_while] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_extern] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_COLON_COLON] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_yield] = ACTIONS(1622), + [anon_sym_move] = ACTIONS(1622), + [sym_integer_literal] = ACTIONS(1620), + [aux_sym_string_literal_token1] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1622), + [anon_sym_false] = ACTIONS(1622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1622), + [sym_super] = ACTIONS(1622), + [sym_crate] = ACTIONS(1622), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1620), + [sym_float_literal] = ACTIONS(1620), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1626), - [sym_identifier] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_macro_rules_BANG] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_async] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1628), - [anon_sym_enum] = ACTIONS(1628), - [anon_sym_fn] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_impl] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_mod] = ACTIONS(1628), - [anon_sym_pub] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_struct] = ACTIONS(1628), - [anon_sym_trait] = ACTIONS(1628), - [anon_sym_type] = ACTIONS(1628), - [anon_sym_union] = ACTIONS(1628), - [anon_sym_unsafe] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_COLON_COLON] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_DOT_DOT] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_move] = ACTIONS(1628), - [sym_integer_literal] = ACTIONS(1626), - [aux_sym_string_literal_token1] = ACTIONS(1626), - [sym_char_literal] = ACTIONS(1626), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1628), - [sym_super] = ACTIONS(1628), - [sym_crate] = ACTIONS(1628), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1626), - [sym_float_literal] = ACTIONS(1626), + [ts_builtin_sym_end] = ACTIONS(1624), + [sym_identifier] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_macro_rules_BANG] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_u8] = ACTIONS(1626), + [anon_sym_i8] = ACTIONS(1626), + [anon_sym_u16] = ACTIONS(1626), + [anon_sym_i16] = ACTIONS(1626), + [anon_sym_u32] = ACTIONS(1626), + [anon_sym_i32] = ACTIONS(1626), + [anon_sym_u64] = ACTIONS(1626), + [anon_sym_i64] = ACTIONS(1626), + [anon_sym_u128] = ACTIONS(1626), + [anon_sym_i128] = ACTIONS(1626), + [anon_sym_isize] = ACTIONS(1626), + [anon_sym_usize] = ACTIONS(1626), + [anon_sym_f32] = ACTIONS(1626), + [anon_sym_f64] = ACTIONS(1626), + [anon_sym_bool] = ACTIONS(1626), + [anon_sym_str] = ACTIONS(1626), + [anon_sym_char] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_default] = ACTIONS(1626), + [anon_sym_enum] = ACTIONS(1626), + [anon_sym_fn] = ACTIONS(1626), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_impl] = ACTIONS(1626), + [anon_sym_let] = ACTIONS(1626), + [anon_sym_loop] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_mod] = ACTIONS(1626), + [anon_sym_pub] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1626), + [anon_sym_struct] = ACTIONS(1626), + [anon_sym_trait] = ACTIONS(1626), + [anon_sym_type] = ACTIONS(1626), + [anon_sym_union] = ACTIONS(1626), + [anon_sym_unsafe] = ACTIONS(1626), + [anon_sym_use] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1624), + [anon_sym_extern] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_DOT_DOT] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_yield] = ACTIONS(1626), + [anon_sym_move] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(1624), + [aux_sym_string_literal_token1] = ACTIONS(1624), + [sym_char_literal] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1626), + [sym_super] = ACTIONS(1626), + [sym_crate] = ACTIONS(1626), + [sym_metavariable] = ACTIONS(1624), + [sym_raw_string_literal] = ACTIONS(1624), + [sym_float_literal] = ACTIONS(1624), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1630), - [sym_identifier] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_macro_rules_BANG] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_LBRACE] = ACTIONS(1630), - [anon_sym_RBRACE] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_u8] = ACTIONS(1632), - [anon_sym_i8] = ACTIONS(1632), - [anon_sym_u16] = ACTIONS(1632), - [anon_sym_i16] = ACTIONS(1632), - [anon_sym_u32] = ACTIONS(1632), - [anon_sym_i32] = ACTIONS(1632), - [anon_sym_u64] = ACTIONS(1632), - [anon_sym_i64] = ACTIONS(1632), - [anon_sym_u128] = ACTIONS(1632), - [anon_sym_i128] = ACTIONS(1632), - [anon_sym_isize] = ACTIONS(1632), - [anon_sym_usize] = ACTIONS(1632), - [anon_sym_f32] = ACTIONS(1632), - [anon_sym_f64] = ACTIONS(1632), - [anon_sym_bool] = ACTIONS(1632), - [anon_sym_str] = ACTIONS(1632), - [anon_sym_char] = ACTIONS(1632), - [anon_sym_SQUOTE] = ACTIONS(1632), - [anon_sym_async] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_default] = ACTIONS(1632), - [anon_sym_enum] = ACTIONS(1632), - [anon_sym_fn] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_impl] = ACTIONS(1632), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_loop] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1632), - [anon_sym_mod] = ACTIONS(1632), - [anon_sym_pub] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_struct] = ACTIONS(1632), - [anon_sym_trait] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_union] = ACTIONS(1632), - [anon_sym_unsafe] = ACTIONS(1632), - [anon_sym_use] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_POUND] = ACTIONS(1630), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_extern] = ACTIONS(1632), - [anon_sym_LT] = ACTIONS(1630), - [anon_sym_COLON_COLON] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_DOT_DOT] = ACTIONS(1630), - [anon_sym_DASH] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1630), - [anon_sym_yield] = ACTIONS(1632), - [anon_sym_move] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(1630), - [aux_sym_string_literal_token1] = ACTIONS(1630), - [sym_char_literal] = ACTIONS(1630), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1632), - [sym_super] = ACTIONS(1632), - [sym_crate] = ACTIONS(1632), - [sym_metavariable] = ACTIONS(1630), - [sym_raw_string_literal] = ACTIONS(1630), - [sym_float_literal] = ACTIONS(1630), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_macro_rules_BANG] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_u8] = ACTIONS(1630), + [anon_sym_i8] = ACTIONS(1630), + [anon_sym_u16] = ACTIONS(1630), + [anon_sym_i16] = ACTIONS(1630), + [anon_sym_u32] = ACTIONS(1630), + [anon_sym_i32] = ACTIONS(1630), + [anon_sym_u64] = ACTIONS(1630), + [anon_sym_i64] = ACTIONS(1630), + [anon_sym_u128] = ACTIONS(1630), + [anon_sym_i128] = ACTIONS(1630), + [anon_sym_isize] = ACTIONS(1630), + [anon_sym_usize] = ACTIONS(1630), + [anon_sym_f32] = ACTIONS(1630), + [anon_sym_f64] = ACTIONS(1630), + [anon_sym_bool] = ACTIONS(1630), + [anon_sym_str] = ACTIONS(1630), + [anon_sym_char] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_const] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1630), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_enum] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1630), + [anon_sym_for] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1630), + [anon_sym_impl] = ACTIONS(1630), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_loop] = ACTIONS(1630), + [anon_sym_match] = ACTIONS(1630), + [anon_sym_mod] = ACTIONS(1630), + [anon_sym_pub] = ACTIONS(1630), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_struct] = ACTIONS(1630), + [anon_sym_trait] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_unsafe] = ACTIONS(1630), + [anon_sym_use] = ACTIONS(1630), + [anon_sym_while] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_yield] = ACTIONS(1630), + [anon_sym_move] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(1628), + [aux_sym_string_literal_token1] = ACTIONS(1628), + [sym_char_literal] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1630), + [anon_sym_false] = ACTIONS(1630), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1630), + [sym_super] = ACTIONS(1630), + [sym_crate] = ACTIONS(1630), + [sym_metavariable] = ACTIONS(1628), + [sym_raw_string_literal] = ACTIONS(1628), + [sym_float_literal] = ACTIONS(1628), [sym_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym_macro_rules_BANG] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1634), - [anon_sym_RBRACE] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_u8] = ACTIONS(1636), - [anon_sym_i8] = ACTIONS(1636), - [anon_sym_u16] = ACTIONS(1636), - [anon_sym_i16] = ACTIONS(1636), - [anon_sym_u32] = ACTIONS(1636), - [anon_sym_i32] = ACTIONS(1636), - [anon_sym_u64] = ACTIONS(1636), - [anon_sym_i64] = ACTIONS(1636), - [anon_sym_u128] = ACTIONS(1636), - [anon_sym_i128] = ACTIONS(1636), - [anon_sym_isize] = ACTIONS(1636), - [anon_sym_usize] = ACTIONS(1636), - [anon_sym_f32] = ACTIONS(1636), - [anon_sym_f64] = ACTIONS(1636), - [anon_sym_bool] = ACTIONS(1636), - [anon_sym_str] = ACTIONS(1636), - [anon_sym_char] = ACTIONS(1636), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_enum] = ACTIONS(1636), - [anon_sym_fn] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_impl] = ACTIONS(1636), - [anon_sym_let] = ACTIONS(1636), - [anon_sym_loop] = ACTIONS(1636), - [anon_sym_match] = ACTIONS(1636), - [anon_sym_mod] = ACTIONS(1636), - [anon_sym_pub] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_struct] = ACTIONS(1636), - [anon_sym_trait] = ACTIONS(1636), - [anon_sym_type] = ACTIONS(1636), - [anon_sym_union] = ACTIONS(1636), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_use] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1634), - [anon_sym_extern] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_DOT_DOT] = ACTIONS(1634), - [anon_sym_DASH] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1634), - [anon_sym_yield] = ACTIONS(1636), - [anon_sym_move] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [aux_sym_string_literal_token1] = ACTIONS(1634), - [sym_char_literal] = ACTIONS(1634), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1636), - [sym_super] = ACTIONS(1636), - [sym_crate] = ACTIONS(1636), - [sym_metavariable] = ACTIONS(1634), - [sym_raw_string_literal] = ACTIONS(1634), - [sym_float_literal] = ACTIONS(1634), + [ts_builtin_sym_end] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_macro_rules_BANG] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_STAR] = ACTIONS(1632), + [anon_sym_u8] = ACTIONS(1634), + [anon_sym_i8] = ACTIONS(1634), + [anon_sym_u16] = ACTIONS(1634), + [anon_sym_i16] = ACTIONS(1634), + [anon_sym_u32] = ACTIONS(1634), + [anon_sym_i32] = ACTIONS(1634), + [anon_sym_u64] = ACTIONS(1634), + [anon_sym_i64] = ACTIONS(1634), + [anon_sym_u128] = ACTIONS(1634), + [anon_sym_i128] = ACTIONS(1634), + [anon_sym_isize] = ACTIONS(1634), + [anon_sym_usize] = ACTIONS(1634), + [anon_sym_f32] = ACTIONS(1634), + [anon_sym_f64] = ACTIONS(1634), + [anon_sym_bool] = ACTIONS(1634), + [anon_sym_str] = ACTIONS(1634), + [anon_sym_char] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_async] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1634), + [anon_sym_enum] = ACTIONS(1634), + [anon_sym_fn] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1634), + [anon_sym_let] = ACTIONS(1634), + [anon_sym_loop] = ACTIONS(1634), + [anon_sym_match] = ACTIONS(1634), + [anon_sym_mod] = ACTIONS(1634), + [anon_sym_pub] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_static] = ACTIONS(1634), + [anon_sym_struct] = ACTIONS(1634), + [anon_sym_trait] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(1634), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1634), + [anon_sym_use] = ACTIONS(1634), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1632), + [anon_sym_COLON_COLON] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_PIPE] = ACTIONS(1632), + [anon_sym_yield] = ACTIONS(1634), + [anon_sym_move] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1632), + [aux_sym_string_literal_token1] = ACTIONS(1632), + [sym_char_literal] = ACTIONS(1632), + [anon_sym_true] = ACTIONS(1634), + [anon_sym_false] = ACTIONS(1634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1634), + [sym_super] = ACTIONS(1634), + [sym_crate] = ACTIONS(1634), + [sym_metavariable] = ACTIONS(1632), + [sym_raw_string_literal] = ACTIONS(1632), + [sym_float_literal] = ACTIONS(1632), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1638), - [sym_identifier] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_macro_rules_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1638), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_u8] = ACTIONS(1640), - [anon_sym_i8] = ACTIONS(1640), - [anon_sym_u16] = ACTIONS(1640), - [anon_sym_i16] = ACTIONS(1640), - [anon_sym_u32] = ACTIONS(1640), - [anon_sym_i32] = ACTIONS(1640), - [anon_sym_u64] = ACTIONS(1640), - [anon_sym_i64] = ACTIONS(1640), - [anon_sym_u128] = ACTIONS(1640), - [anon_sym_i128] = ACTIONS(1640), - [anon_sym_isize] = ACTIONS(1640), - [anon_sym_usize] = ACTIONS(1640), - [anon_sym_f32] = ACTIONS(1640), - [anon_sym_f64] = ACTIONS(1640), - [anon_sym_bool] = ACTIONS(1640), - [anon_sym_str] = ACTIONS(1640), - [anon_sym_char] = ACTIONS(1640), - [anon_sym_SQUOTE] = ACTIONS(1640), - [anon_sym_async] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_default] = ACTIONS(1640), - [anon_sym_enum] = ACTIONS(1640), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_impl] = ACTIONS(1640), - [anon_sym_let] = ACTIONS(1640), - [anon_sym_loop] = ACTIONS(1640), - [anon_sym_match] = ACTIONS(1640), - [anon_sym_mod] = ACTIONS(1640), - [anon_sym_pub] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_struct] = ACTIONS(1640), - [anon_sym_trait] = ACTIONS(1640), - [anon_sym_type] = ACTIONS(1640), - [anon_sym_union] = ACTIONS(1640), - [anon_sym_unsafe] = ACTIONS(1640), - [anon_sym_use] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_POUND] = ACTIONS(1638), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_extern] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_COLON_COLON] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1638), - [anon_sym_DOT_DOT] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_yield] = ACTIONS(1640), - [anon_sym_move] = ACTIONS(1640), - [sym_integer_literal] = ACTIONS(1638), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1638), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1640), - [sym_super] = ACTIONS(1640), - [sym_crate] = ACTIONS(1640), - [sym_metavariable] = ACTIONS(1638), - [sym_raw_string_literal] = ACTIONS(1638), - [sym_float_literal] = ACTIONS(1638), + [ts_builtin_sym_end] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_macro_rules_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_u8] = ACTIONS(1638), + [anon_sym_i8] = ACTIONS(1638), + [anon_sym_u16] = ACTIONS(1638), + [anon_sym_i16] = ACTIONS(1638), + [anon_sym_u32] = ACTIONS(1638), + [anon_sym_i32] = ACTIONS(1638), + [anon_sym_u64] = ACTIONS(1638), + [anon_sym_i64] = ACTIONS(1638), + [anon_sym_u128] = ACTIONS(1638), + [anon_sym_i128] = ACTIONS(1638), + [anon_sym_isize] = ACTIONS(1638), + [anon_sym_usize] = ACTIONS(1638), + [anon_sym_f32] = ACTIONS(1638), + [anon_sym_f64] = ACTIONS(1638), + [anon_sym_bool] = ACTIONS(1638), + [anon_sym_str] = ACTIONS(1638), + [anon_sym_char] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_async] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_const] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1638), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_impl] = ACTIONS(1638), + [anon_sym_let] = ACTIONS(1638), + [anon_sym_loop] = ACTIONS(1638), + [anon_sym_match] = ACTIONS(1638), + [anon_sym_mod] = ACTIONS(1638), + [anon_sym_pub] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_struct] = ACTIONS(1638), + [anon_sym_trait] = ACTIONS(1638), + [anon_sym_type] = ACTIONS(1638), + [anon_sym_union] = ACTIONS(1638), + [anon_sym_unsafe] = ACTIONS(1638), + [anon_sym_use] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_COLON_COLON] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_DOT_DOT] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_yield] = ACTIONS(1638), + [anon_sym_move] = ACTIONS(1638), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1636), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1638), + [sym_super] = ACTIONS(1638), + [sym_crate] = ACTIONS(1638), + [sym_metavariable] = ACTIONS(1636), + [sym_raw_string_literal] = ACTIONS(1636), + [sym_float_literal] = ACTIONS(1636), [sym_block_comment] = ACTIONS(3), }, [387] = { - [sym_attribute_item] = STATE(533), - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_macro_invocation] = STATE(2345), - [sym_scoped_identifier] = STATE(1557), - [sym_scoped_type_identifier] = STATE(1913), - [sym_match_arm] = STATE(489), - [sym_last_match_arm] = STATE(2489), - [sym_match_pattern] = STATE(2358), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1933), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(533), - [aux_sym_match_block_repeat1] = STATE(489), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [ts_builtin_sym_end] = ACTIONS(1640), + [sym_identifier] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_macro_rules_BANG] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_u8] = ACTIONS(1642), + [anon_sym_i8] = ACTIONS(1642), + [anon_sym_u16] = ACTIONS(1642), + [anon_sym_i16] = ACTIONS(1642), + [anon_sym_u32] = ACTIONS(1642), + [anon_sym_i32] = ACTIONS(1642), + [anon_sym_u64] = ACTIONS(1642), + [anon_sym_i64] = ACTIONS(1642), + [anon_sym_u128] = ACTIONS(1642), + [anon_sym_i128] = ACTIONS(1642), + [anon_sym_isize] = ACTIONS(1642), + [anon_sym_usize] = ACTIONS(1642), + [anon_sym_f32] = ACTIONS(1642), + [anon_sym_f64] = ACTIONS(1642), + [anon_sym_bool] = ACTIONS(1642), + [anon_sym_str] = ACTIONS(1642), + [anon_sym_char] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_break] = ACTIONS(1642), + [anon_sym_const] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(1642), + [anon_sym_default] = ACTIONS(1642), + [anon_sym_enum] = ACTIONS(1642), + [anon_sym_fn] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1642), + [anon_sym_let] = ACTIONS(1642), + [anon_sym_loop] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_mod] = ACTIONS(1642), + [anon_sym_pub] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_static] = ACTIONS(1642), + [anon_sym_struct] = ACTIONS(1642), + [anon_sym_trait] = ACTIONS(1642), + [anon_sym_type] = ACTIONS(1642), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_use] = ACTIONS(1642), + [anon_sym_while] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_extern] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_COLON_COLON] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_move] = ACTIONS(1642), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1640), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1642), + [anon_sym_false] = ACTIONS(1642), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1640), + [sym_raw_string_literal] = ACTIONS(1640), + [sym_float_literal] = ACTIONS(1640), [sym_block_comment] = ACTIONS(3), }, [388] = { @@ -55727,6 +55806,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [438] = { + [ts_builtin_sym_end] = ACTIONS(524), + [sym_identifier] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_macro_rules_BANG] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_u8] = ACTIONS(526), + [anon_sym_i8] = ACTIONS(526), + [anon_sym_u16] = ACTIONS(526), + [anon_sym_i16] = ACTIONS(526), + [anon_sym_u32] = ACTIONS(526), + [anon_sym_i32] = ACTIONS(526), + [anon_sym_u64] = ACTIONS(526), + [anon_sym_i64] = ACTIONS(526), + [anon_sym_u128] = ACTIONS(526), + [anon_sym_i128] = ACTIONS(526), + [anon_sym_isize] = ACTIONS(526), + [anon_sym_usize] = ACTIONS(526), + [anon_sym_f32] = ACTIONS(526), + [anon_sym_f64] = ACTIONS(526), + [anon_sym_bool] = ACTIONS(526), + [anon_sym_str] = ACTIONS(526), + [anon_sym_char] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_async] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_const] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_default] = ACTIONS(526), + [anon_sym_enum] = ACTIONS(526), + [anon_sym_fn] = ACTIONS(526), + [anon_sym_for] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [anon_sym_impl] = ACTIONS(526), + [anon_sym_let] = ACTIONS(526), + [anon_sym_loop] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_mod] = ACTIONS(526), + [anon_sym_pub] = ACTIONS(526), + [anon_sym_return] = ACTIONS(526), + [anon_sym_static] = ACTIONS(526), + [anon_sym_struct] = ACTIONS(526), + [anon_sym_trait] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_union] = ACTIONS(526), + [anon_sym_unsafe] = ACTIONS(526), + [anon_sym_use] = ACTIONS(526), + [anon_sym_while] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_extern] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(524), + [anon_sym_DOT_DOT] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_move] = ACTIONS(526), + [sym_integer_literal] = ACTIONS(524), + [aux_sym_string_literal_token1] = ACTIONS(524), + [sym_char_literal] = ACTIONS(524), + [anon_sym_true] = ACTIONS(526), + [anon_sym_false] = ACTIONS(526), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_crate] = ACTIONS(526), + [sym_metavariable] = ACTIONS(524), + [sym_raw_string_literal] = ACTIONS(524), + [sym_float_literal] = ACTIONS(524), + [sym_block_comment] = ACTIONS(3), + }, + [439] = { [ts_builtin_sym_end] = ACTIONS(1844), [sym_identifier] = ACTIONS(1846), [anon_sym_SEMI] = ACTIONS(1844), @@ -55803,7 +55959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1844), [sym_block_comment] = ACTIONS(3), }, - [439] = { + [440] = { [ts_builtin_sym_end] = ACTIONS(1848), [sym_identifier] = ACTIONS(1850), [anon_sym_SEMI] = ACTIONS(1848), @@ -55880,7 +56036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, - [440] = { + [441] = { [ts_builtin_sym_end] = ACTIONS(1852), [sym_identifier] = ACTIONS(1854), [anon_sym_SEMI] = ACTIONS(1852), @@ -55957,7 +56113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, - [441] = { + [442] = { [ts_builtin_sym_end] = ACTIONS(1856), [sym_identifier] = ACTIONS(1858), [anon_sym_SEMI] = ACTIONS(1856), @@ -56034,7 +56190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1856), [sym_block_comment] = ACTIONS(3), }, - [442] = { + [443] = { [ts_builtin_sym_end] = ACTIONS(1860), [sym_identifier] = ACTIONS(1862), [anon_sym_SEMI] = ACTIONS(1860), @@ -56111,7 +56267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1860), [sym_block_comment] = ACTIONS(3), }, - [443] = { + [444] = { [ts_builtin_sym_end] = ACTIONS(1864), [sym_identifier] = ACTIONS(1866), [anon_sym_SEMI] = ACTIONS(1864), @@ -56188,7 +56344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1864), [sym_block_comment] = ACTIONS(3), }, - [444] = { + [445] = { [ts_builtin_sym_end] = ACTIONS(1868), [sym_identifier] = ACTIONS(1870), [anon_sym_SEMI] = ACTIONS(1868), @@ -56265,7 +56421,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1868), [sym_block_comment] = ACTIONS(3), }, - [445] = { + [446] = { + [ts_builtin_sym_end] = ACTIONS(544), + [sym_identifier] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(544), + [anon_sym_macro_rules_BANG] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_str] = ACTIONS(546), + [anon_sym_char] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_async] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(546), + [anon_sym_fn] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_impl] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_mod] = ACTIONS(546), + [anon_sym_pub] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_static] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_trait] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_union] = ACTIONS(546), + [anon_sym_unsafe] = ACTIONS(546), + [anon_sym_use] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(544), + [anon_sym_extern] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(544), + [anon_sym_yield] = ACTIONS(546), + [anon_sym_move] = ACTIONS(546), + [sym_integer_literal] = ACTIONS(544), + [aux_sym_string_literal_token1] = ACTIONS(544), + [sym_char_literal] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(546), + [sym_super] = ACTIONS(546), + [sym_crate] = ACTIONS(546), + [sym_metavariable] = ACTIONS(544), + [sym_raw_string_literal] = ACTIONS(544), + [sym_float_literal] = ACTIONS(544), + [sym_block_comment] = ACTIONS(3), + }, + [447] = { [ts_builtin_sym_end] = ACTIONS(1872), [sym_identifier] = ACTIONS(1874), [anon_sym_SEMI] = ACTIONS(1872), @@ -56342,7 +56575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1872), [sym_block_comment] = ACTIONS(3), }, - [446] = { + [448] = { [ts_builtin_sym_end] = ACTIONS(1876), [sym_identifier] = ACTIONS(1878), [anon_sym_SEMI] = ACTIONS(1876), @@ -56419,7 +56652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1876), [sym_block_comment] = ACTIONS(3), }, - [447] = { + [449] = { [ts_builtin_sym_end] = ACTIONS(1880), [sym_identifier] = ACTIONS(1882), [anon_sym_SEMI] = ACTIONS(1880), @@ -56496,84 +56729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1880), [sym_block_comment] = ACTIONS(3), }, - [448] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(554), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(556), - [anon_sym_move] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), - [sym_block_comment] = ACTIONS(3), - }, - [449] = { + [450] = { [ts_builtin_sym_end] = ACTIONS(1884), [sym_identifier] = ACTIONS(1886), [anon_sym_SEMI] = ACTIONS(1884), @@ -56650,7 +56806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1884), [sym_block_comment] = ACTIONS(3), }, - [450] = { + [451] = { [ts_builtin_sym_end] = ACTIONS(1888), [sym_identifier] = ACTIONS(1890), [anon_sym_SEMI] = ACTIONS(1888), @@ -56727,7 +56883,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1888), [sym_block_comment] = ACTIONS(3), }, - [451] = { + [452] = { + [ts_builtin_sym_end] = ACTIONS(550), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_macro_rules_BANG] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [anon_sym_POUND] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_move] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(550), + [aux_sym_string_literal_token1] = ACTIONS(550), + [sym_char_literal] = ACTIONS(550), + [anon_sym_true] = ACTIONS(552), + [anon_sym_false] = ACTIONS(552), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(550), + [sym_raw_string_literal] = ACTIONS(550), + [sym_float_literal] = ACTIONS(550), + [sym_block_comment] = ACTIONS(3), + }, + [453] = { [ts_builtin_sym_end] = ACTIONS(1892), [sym_identifier] = ACTIONS(1894), [anon_sym_SEMI] = ACTIONS(1892), @@ -56804,84 +57037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1892), [sym_block_comment] = ACTIONS(3), }, - [452] = { - [ts_builtin_sym_end] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_macro_rules_BANG] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_u8] = ACTIONS(542), - [anon_sym_i8] = ACTIONS(542), - [anon_sym_u16] = ACTIONS(542), - [anon_sym_i16] = ACTIONS(542), - [anon_sym_u32] = ACTIONS(542), - [anon_sym_i32] = ACTIONS(542), - [anon_sym_u64] = ACTIONS(542), - [anon_sym_i64] = ACTIONS(542), - [anon_sym_u128] = ACTIONS(542), - [anon_sym_i128] = ACTIONS(542), - [anon_sym_isize] = ACTIONS(542), - [anon_sym_usize] = ACTIONS(542), - [anon_sym_f32] = ACTIONS(542), - [anon_sym_f64] = ACTIONS(542), - [anon_sym_bool] = ACTIONS(542), - [anon_sym_str] = ACTIONS(542), - [anon_sym_char] = ACTIONS(542), - [anon_sym_SQUOTE] = ACTIONS(542), - [anon_sym_async] = ACTIONS(542), - [anon_sym_break] = ACTIONS(542), - [anon_sym_const] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(542), - [anon_sym_default] = ACTIONS(542), - [anon_sym_enum] = ACTIONS(542), - [anon_sym_fn] = ACTIONS(542), - [anon_sym_for] = ACTIONS(542), - [anon_sym_if] = ACTIONS(542), - [anon_sym_impl] = ACTIONS(542), - [anon_sym_let] = ACTIONS(542), - [anon_sym_loop] = ACTIONS(542), - [anon_sym_match] = ACTIONS(542), - [anon_sym_mod] = ACTIONS(542), - [anon_sym_pub] = ACTIONS(542), - [anon_sym_return] = ACTIONS(542), - [anon_sym_static] = ACTIONS(542), - [anon_sym_struct] = ACTIONS(542), - [anon_sym_trait] = ACTIONS(542), - [anon_sym_type] = ACTIONS(542), - [anon_sym_union] = ACTIONS(542), - [anon_sym_unsafe] = ACTIONS(542), - [anon_sym_use] = ACTIONS(542), - [anon_sym_while] = ACTIONS(542), - [anon_sym_POUND] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_extern] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_COLON_COLON] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_DOT_DOT] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_yield] = ACTIONS(542), - [anon_sym_move] = ACTIONS(542), - [sym_integer_literal] = ACTIONS(540), - [aux_sym_string_literal_token1] = ACTIONS(540), - [sym_char_literal] = ACTIONS(540), - [anon_sym_true] = ACTIONS(542), - [anon_sym_false] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(542), - [sym_super] = ACTIONS(542), - [sym_crate] = ACTIONS(542), - [sym_metavariable] = ACTIONS(540), - [sym_raw_string_literal] = ACTIONS(540), - [sym_float_literal] = ACTIONS(540), - [sym_block_comment] = ACTIONS(3), - }, - [453] = { + [454] = { [ts_builtin_sym_end] = ACTIONS(1896), [sym_identifier] = ACTIONS(1898), [anon_sym_SEMI] = ACTIONS(1896), @@ -56958,7 +57114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1896), [sym_block_comment] = ACTIONS(3), }, - [454] = { + [455] = { [ts_builtin_sym_end] = ACTIONS(1900), [sym_identifier] = ACTIONS(1902), [anon_sym_SEMI] = ACTIONS(1900), @@ -57035,7 +57191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1900), [sym_block_comment] = ACTIONS(3), }, - [455] = { + [456] = { [ts_builtin_sym_end] = ACTIONS(1904), [sym_identifier] = ACTIONS(1906), [anon_sym_SEMI] = ACTIONS(1904), @@ -57112,7 +57268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1904), [sym_block_comment] = ACTIONS(3), }, - [456] = { + [457] = { [ts_builtin_sym_end] = ACTIONS(1908), [sym_identifier] = ACTIONS(1910), [anon_sym_SEMI] = ACTIONS(1908), @@ -57189,83 +57345,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1908), [sym_block_comment] = ACTIONS(3), }, - [457] = { - [ts_builtin_sym_end] = ACTIONS(530), - [sym_identifier] = ACTIONS(532), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_macro_rules_BANG] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(530), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_u8] = ACTIONS(532), - [anon_sym_i8] = ACTIONS(532), - [anon_sym_u16] = ACTIONS(532), - [anon_sym_i16] = ACTIONS(532), - [anon_sym_u32] = ACTIONS(532), - [anon_sym_i32] = ACTIONS(532), - [anon_sym_u64] = ACTIONS(532), - [anon_sym_i64] = ACTIONS(532), - [anon_sym_u128] = ACTIONS(532), - [anon_sym_i128] = ACTIONS(532), - [anon_sym_isize] = ACTIONS(532), - [anon_sym_usize] = ACTIONS(532), - [anon_sym_f32] = ACTIONS(532), - [anon_sym_f64] = ACTIONS(532), - [anon_sym_bool] = ACTIONS(532), - [anon_sym_str] = ACTIONS(532), - [anon_sym_char] = ACTIONS(532), - [anon_sym_SQUOTE] = ACTIONS(532), - [anon_sym_async] = ACTIONS(532), - [anon_sym_break] = ACTIONS(532), - [anon_sym_const] = ACTIONS(532), - [anon_sym_continue] = ACTIONS(532), - [anon_sym_default] = ACTIONS(532), - [anon_sym_enum] = ACTIONS(532), - [anon_sym_fn] = ACTIONS(532), - [anon_sym_for] = ACTIONS(532), - [anon_sym_if] = ACTIONS(532), - [anon_sym_impl] = ACTIONS(532), - [anon_sym_let] = ACTIONS(532), - [anon_sym_loop] = ACTIONS(532), - [anon_sym_match] = ACTIONS(532), - [anon_sym_mod] = ACTIONS(532), - [anon_sym_pub] = ACTIONS(532), - [anon_sym_return] = ACTIONS(532), - [anon_sym_static] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(532), - [anon_sym_trait] = ACTIONS(532), - [anon_sym_type] = ACTIONS(532), - [anon_sym_union] = ACTIONS(532), - [anon_sym_unsafe] = ACTIONS(532), - [anon_sym_use] = ACTIONS(532), - [anon_sym_while] = ACTIONS(532), - [anon_sym_POUND] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(530), - [anon_sym_extern] = ACTIONS(532), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_COLON_COLON] = ACTIONS(530), - [anon_sym_AMP] = ACTIONS(530), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_PIPE] = ACTIONS(530), - [anon_sym_yield] = ACTIONS(532), - [anon_sym_move] = ACTIONS(532), - [sym_integer_literal] = ACTIONS(530), - [aux_sym_string_literal_token1] = ACTIONS(530), - [sym_char_literal] = ACTIONS(530), - [anon_sym_true] = ACTIONS(532), - [anon_sym_false] = ACTIONS(532), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(532), - [sym_super] = ACTIONS(532), - [sym_crate] = ACTIONS(532), - [sym_metavariable] = ACTIONS(530), - [sym_raw_string_literal] = ACTIONS(530), - [sym_float_literal] = ACTIONS(530), - [sym_block_comment] = ACTIONS(3), - }, [458] = { [ts_builtin_sym_end] = ACTIONS(1912), [sym_identifier] = ACTIONS(1914), @@ -59115,14 +59194,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [482] = { - [sym__token_pattern] = STATE(496), - [sym_token_tree_pattern] = STATE(496), - [sym_token_binding_pattern] = STATE(496), - [sym_token_repetition_pattern] = STATE(496), - [sym__literal] = STATE(496), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(496), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(501), + [sym_last_match_arm] = STATE(2450), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [483] = { + [sym__token_pattern] = STATE(499), + [sym_token_tree_pattern] = STATE(499), + [sym_token_binding_pattern] = STATE(499), + [sym_token_repetition_pattern] = STATE(499), + [sym__literal] = STATE(499), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(499), [sym_identifier] = ACTIONS(2008), [anon_sym_LPAREN] = ACTIONS(2010), [anon_sym_RPAREN] = ACTIONS(2012), @@ -59181,7 +59336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2008), [sym_super] = ACTIONS(2008), [sym_crate] = ACTIONS(2008), @@ -59190,15 +59345,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [483] = { - [sym__token_pattern] = STATE(484), - [sym_token_tree_pattern] = STATE(484), - [sym_token_binding_pattern] = STATE(484), - [sym_token_repetition_pattern] = STATE(484), - [sym__literal] = STATE(484), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(484), + [484] = { + [sym__token_pattern] = STATE(488), + [sym_token_tree_pattern] = STATE(488), + [sym_token_binding_pattern] = STATE(488), + [sym_token_repetition_pattern] = STATE(488), + [sym__literal] = STATE(488), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(488), [sym_identifier] = ACTIONS(2028), [anon_sym_LPAREN] = ACTIONS(2010), [anon_sym_RPAREN] = ACTIONS(2030), @@ -59257,7 +59412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2028), [sym_super] = ACTIONS(2028), [sym_crate] = ACTIONS(2028), @@ -59266,95 +59421,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [484] = { - [sym__token_pattern] = STATE(251), - [sym_token_tree_pattern] = STATE(251), - [sym_token_binding_pattern] = STATE(251), - [sym_token_repetition_pattern] = STATE(251), - [sym__literal] = STATE(251), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, [485] = { - [sym__token_pattern] = STATE(251), - [sym_token_tree_pattern] = STATE(251), - [sym_token_binding_pattern] = STATE(251), - [sym_token_repetition_pattern] = STATE(251), - [sym__literal] = STATE(251), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(251), + [sym__token_pattern] = STATE(489), + [sym_token_tree_pattern] = STATE(489), + [sym_token_binding_pattern] = STATE(489), + [sym_token_repetition_pattern] = STATE(489), + [sym__literal] = STATE(489), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(489), [sym_identifier] = ACTIONS(2032), [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2036), [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(2016), [anon_sym_DOLLAR] = ACTIONS(2018), [anon_sym_u8] = ACTIONS(2032), @@ -59409,7 +59488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2032), [sym_super] = ACTIONS(2032), [sym_crate] = ACTIONS(2032), @@ -59419,444 +59498,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [486] = { - [sym__token_pattern] = STATE(251), - [sym_token_tree_pattern] = STATE(251), - [sym_token_binding_pattern] = STATE(251), - [sym_token_repetition_pattern] = STATE(251), - [sym__literal] = STATE(251), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), + [sym__token_pattern] = STATE(490), + [sym_token_tree_pattern] = STATE(490), + [sym_token_binding_pattern] = STATE(490), + [sym_token_repetition_pattern] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2034), [anon_sym_LPAREN] = ACTIONS(2010), [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2036), [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_RBRACK] = ACTIONS(2030), [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), + [anon_sym_u8] = ACTIONS(2034), + [anon_sym_i8] = ACTIONS(2034), + [anon_sym_u16] = ACTIONS(2034), + [anon_sym_i16] = ACTIONS(2034), + [anon_sym_u32] = ACTIONS(2034), + [anon_sym_i32] = ACTIONS(2034), + [anon_sym_u64] = ACTIONS(2034), + [anon_sym_i64] = ACTIONS(2034), + [anon_sym_u128] = ACTIONS(2034), + [anon_sym_i128] = ACTIONS(2034), + [anon_sym_isize] = ACTIONS(2034), + [anon_sym_usize] = ACTIONS(2034), + [anon_sym_f32] = ACTIONS(2034), + [anon_sym_f64] = ACTIONS(2034), + [anon_sym_bool] = ACTIONS(2034), + [anon_sym_str] = ACTIONS(2034), + [anon_sym_char] = ACTIONS(2034), + [aux_sym__non_special_token_token1] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_as] = ACTIONS(2034), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_await] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_default] = ACTIONS(2034), + [anon_sym_enum] = ACTIONS(2034), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_impl] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_mod] = ACTIONS(2034), + [anon_sym_pub] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_struct] = ACTIONS(2034), + [anon_sym_trait] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_union] = ACTIONS(2034), + [anon_sym_unsafe] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_where] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [sym_mutable_specifier] = ACTIONS(2034), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2034), + [sym_super] = ACTIONS(2034), + [sym_crate] = ACTIONS(2034), [sym_metavariable] = ACTIONS(2026), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [487] = { - [sym__token_pattern] = STATE(251), - [sym_token_tree_pattern] = STATE(251), - [sym_token_binding_pattern] = STATE(251), - [sym_token_repetition_pattern] = STATE(251), - [sym__literal] = STATE(251), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [488] = { - [sym_attribute_item] = STATE(533), - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_macro_invocation] = STATE(2345), - [sym_scoped_identifier] = STATE(1557), - [sym_scoped_type_identifier] = STATE(1913), - [sym_match_arm] = STATE(500), - [sym_last_match_arm] = STATE(2397), - [sym_match_pattern] = STATE(2358), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1933), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(533), - [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [489] = { - [sym_attribute_item] = STATE(533), - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_macro_invocation] = STATE(2345), - [sym_scoped_identifier] = STATE(1557), - [sym_scoped_type_identifier] = STATE(1913), - [sym_match_arm] = STATE(500), - [sym_last_match_arm] = STATE(2519), - [sym_match_pattern] = STATE(2358), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1933), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(533), - [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [490] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_RBRACK] = ACTIONS(2044), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2038), - [anon_sym_i8] = ACTIONS(2038), - [anon_sym_u16] = ACTIONS(2038), - [anon_sym_i16] = ACTIONS(2038), - [anon_sym_u32] = ACTIONS(2038), - [anon_sym_i32] = ACTIONS(2038), - [anon_sym_u64] = ACTIONS(2038), - [anon_sym_i64] = ACTIONS(2038), - [anon_sym_u128] = ACTIONS(2038), - [anon_sym_i128] = ACTIONS(2038), - [anon_sym_isize] = ACTIONS(2038), - [anon_sym_usize] = ACTIONS(2038), - [anon_sym_f32] = ACTIONS(2038), - [anon_sym_f64] = ACTIONS(2038), - [anon_sym_bool] = ACTIONS(2038), - [anon_sym_str] = ACTIONS(2038), - [anon_sym_char] = ACTIONS(2038), - [aux_sym__non_special_token_token1] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2038), - [anon_sym_as] = ACTIONS(2038), - [anon_sym_async] = ACTIONS(2038), - [anon_sym_await] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_fn] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_impl] = ACTIONS(2038), - [anon_sym_let] = ACTIONS(2038), - [anon_sym_loop] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(2038), - [anon_sym_mod] = ACTIONS(2038), - [anon_sym_pub] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_trait] = ACTIONS(2038), - [anon_sym_type] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_unsafe] = ACTIONS(2038), - [anon_sym_use] = ACTIONS(2038), - [anon_sym_where] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [sym_mutable_specifier] = ACTIONS(2038), - [sym_integer_literal] = ACTIONS(2055), - [aux_sym_string_literal_token1] = ACTIONS(2058), - [sym_char_literal] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_crate] = ACTIONS(2038), - [sym_metavariable] = ACTIONS(2064), - [sym_raw_string_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_block_comment] = ACTIONS(3), - }, - [491] = { - [sym_attribute_item] = STATE(533), - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_macro_invocation] = STATE(2345), - [sym_scoped_identifier] = STATE(1557), - [sym_scoped_type_identifier] = STATE(1913), - [sym_match_arm] = STATE(500), - [sym_last_match_arm] = STATE(2422), - [sym_match_pattern] = STATE(2358), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1933), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(533), - [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(501), + [sym_last_match_arm] = STATE(2415), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -59866,1006 +59641,1091 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [492] = { - [sym__token_pattern] = STATE(499), - [sym_token_tree_pattern] = STATE(499), - [sym_token_binding_pattern] = STATE(499), - [sym_token_repetition_pattern] = STATE(499), - [sym__literal] = STATE(499), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(499), - [sym_identifier] = ACTIONS(2067), + [488] = { + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2038), [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2012), [anon_sym_LBRACK] = ACTIONS(2016), [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2067), - [anon_sym_i8] = ACTIONS(2067), - [anon_sym_u16] = ACTIONS(2067), - [anon_sym_i16] = ACTIONS(2067), - [anon_sym_u32] = ACTIONS(2067), - [anon_sym_i32] = ACTIONS(2067), - [anon_sym_u64] = ACTIONS(2067), - [anon_sym_i64] = ACTIONS(2067), - [anon_sym_u128] = ACTIONS(2067), - [anon_sym_i128] = ACTIONS(2067), - [anon_sym_isize] = ACTIONS(2067), - [anon_sym_usize] = ACTIONS(2067), - [anon_sym_f32] = ACTIONS(2067), - [anon_sym_f64] = ACTIONS(2067), - [anon_sym_bool] = ACTIONS(2067), - [anon_sym_str] = ACTIONS(2067), - [anon_sym_char] = ACTIONS(2067), - [aux_sym__non_special_token_token1] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [anon_sym_fn] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_impl] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_mod] = ACTIONS(2067), - [anon_sym_pub] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_struct] = ACTIONS(2067), - [anon_sym_trait] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_union] = ACTIONS(2067), - [anon_sym_unsafe] = ACTIONS(2067), - [anon_sym_use] = ACTIONS(2067), - [anon_sym_where] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [sym_mutable_specifier] = ACTIONS(2067), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), [sym_metavariable] = ACTIONS(2026), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [493] = { - [sym__token_pattern] = STATE(494), - [sym_token_tree_pattern] = STATE(494), - [sym_token_binding_pattern] = STATE(494), - [sym_token_repetition_pattern] = STATE(494), - [sym__literal] = STATE(494), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(2069), + [489] = { + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), [anon_sym_LPAREN] = ACTIONS(2010), [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2038), [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2012), [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2069), - [anon_sym_i8] = ACTIONS(2069), - [anon_sym_u16] = ACTIONS(2069), - [anon_sym_i16] = ACTIONS(2069), - [anon_sym_u32] = ACTIONS(2069), - [anon_sym_i32] = ACTIONS(2069), - [anon_sym_u64] = ACTIONS(2069), - [anon_sym_i64] = ACTIONS(2069), - [anon_sym_u128] = ACTIONS(2069), - [anon_sym_i128] = ACTIONS(2069), - [anon_sym_isize] = ACTIONS(2069), - [anon_sym_usize] = ACTIONS(2069), - [anon_sym_f32] = ACTIONS(2069), - [anon_sym_f64] = ACTIONS(2069), - [anon_sym_bool] = ACTIONS(2069), - [anon_sym_str] = ACTIONS(2069), - [anon_sym_char] = ACTIONS(2069), - [aux_sym__non_special_token_token1] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_as] = ACTIONS(2069), - [anon_sym_async] = ACTIONS(2069), - [anon_sym_await] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_default] = ACTIONS(2069), - [anon_sym_enum] = ACTIONS(2069), - [anon_sym_fn] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_impl] = ACTIONS(2069), - [anon_sym_let] = ACTIONS(2069), - [anon_sym_loop] = ACTIONS(2069), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_mod] = ACTIONS(2069), - [anon_sym_pub] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_static] = ACTIONS(2069), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_trait] = ACTIONS(2069), - [anon_sym_type] = ACTIONS(2069), - [anon_sym_union] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_use] = ACTIONS(2069), - [anon_sym_where] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2069), - [sym_mutable_specifier] = ACTIONS(2069), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2069), - [sym_super] = ACTIONS(2069), - [sym_crate] = ACTIONS(2069), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), [sym_metavariable] = ACTIONS(2026), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [494] = { - [sym__token_pattern] = STATE(251), - [sym_token_tree_pattern] = STATE(251), - [sym_token_binding_pattern] = STATE(251), - [sym_token_repetition_pattern] = STATE(251), - [sym__literal] = STATE(251), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), + [490] = { + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), [anon_sym_LPAREN] = ACTIONS(2010), [anon_sym_LBRACE] = ACTIONS(2014), [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2038), [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), [sym_metavariable] = ACTIONS(2026), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [495] = { - [sym__token_pattern] = STATE(485), - [sym_token_tree_pattern] = STATE(485), - [sym_token_binding_pattern] = STATE(485), - [sym_token_repetition_pattern] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2073), + [491] = { + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(501), + [sym_last_match_arm] = STATE(2558), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [492] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_RPAREN] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_RBRACK] = ACTIONS(2046), + [anon_sym_DOLLAR] = ACTIONS(2054), + [anon_sym_u8] = ACTIONS(2040), + [anon_sym_i8] = ACTIONS(2040), + [anon_sym_u16] = ACTIONS(2040), + [anon_sym_i16] = ACTIONS(2040), + [anon_sym_u32] = ACTIONS(2040), + [anon_sym_i32] = ACTIONS(2040), + [anon_sym_u64] = ACTIONS(2040), + [anon_sym_i64] = ACTIONS(2040), + [anon_sym_u128] = ACTIONS(2040), + [anon_sym_i128] = ACTIONS(2040), + [anon_sym_isize] = ACTIONS(2040), + [anon_sym_usize] = ACTIONS(2040), + [anon_sym_f32] = ACTIONS(2040), + [anon_sym_f64] = ACTIONS(2040), + [anon_sym_bool] = ACTIONS(2040), + [anon_sym_str] = ACTIONS(2040), + [anon_sym_char] = ACTIONS(2040), + [aux_sym__non_special_token_token1] = ACTIONS(2040), + [anon_sym_SQUOTE] = ACTIONS(2040), + [anon_sym_as] = ACTIONS(2040), + [anon_sym_async] = ACTIONS(2040), + [anon_sym_await] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_fn] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_impl] = ACTIONS(2040), + [anon_sym_let] = ACTIONS(2040), + [anon_sym_loop] = ACTIONS(2040), + [anon_sym_match] = ACTIONS(2040), + [anon_sym_mod] = ACTIONS(2040), + [anon_sym_pub] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_trait] = ACTIONS(2040), + [anon_sym_type] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_unsafe] = ACTIONS(2040), + [anon_sym_use] = ACTIONS(2040), + [anon_sym_where] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [sym_mutable_specifier] = ACTIONS(2040), + [sym_integer_literal] = ACTIONS(2057), + [aux_sym_string_literal_token1] = ACTIONS(2060), + [sym_char_literal] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2040), + [sym_super] = ACTIONS(2040), + [sym_crate] = ACTIONS(2040), + [sym_raw_string_literal] = ACTIONS(2057), + [sym_float_literal] = ACTIONS(2057), + [sym_block_comment] = ACTIONS(3), + }, + [493] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_RBRACK] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2080), + [anon_sym_u8] = ACTIONS(2066), + [anon_sym_i8] = ACTIONS(2066), + [anon_sym_u16] = ACTIONS(2066), + [anon_sym_i16] = ACTIONS(2066), + [anon_sym_u32] = ACTIONS(2066), + [anon_sym_i32] = ACTIONS(2066), + [anon_sym_u64] = ACTIONS(2066), + [anon_sym_i64] = ACTIONS(2066), + [anon_sym_u128] = ACTIONS(2066), + [anon_sym_i128] = ACTIONS(2066), + [anon_sym_isize] = ACTIONS(2066), + [anon_sym_usize] = ACTIONS(2066), + [anon_sym_f32] = ACTIONS(2066), + [anon_sym_f64] = ACTIONS(2066), + [anon_sym_bool] = ACTIONS(2066), + [anon_sym_str] = ACTIONS(2066), + [anon_sym_char] = ACTIONS(2066), + [aux_sym__non_special_token_token1] = ACTIONS(2066), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_async] = ACTIONS(2066), + [anon_sym_await] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(2066), + [anon_sym_enum] = ACTIONS(2066), + [anon_sym_fn] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_impl] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_mod] = ACTIONS(2066), + [anon_sym_pub] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2066), + [anon_sym_struct] = ACTIONS(2066), + [anon_sym_trait] = ACTIONS(2066), + [anon_sym_type] = ACTIONS(2066), + [anon_sym_union] = ACTIONS(2066), + [anon_sym_unsafe] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_where] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [sym_mutable_specifier] = ACTIONS(2066), + [sym_integer_literal] = ACTIONS(2083), + [aux_sym_string_literal_token1] = ACTIONS(2086), + [sym_char_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2066), + [sym_super] = ACTIONS(2066), + [sym_crate] = ACTIONS(2066), + [sym_metavariable] = ACTIONS(2092), + [sym_raw_string_literal] = ACTIONS(2083), + [sym_float_literal] = ACTIONS(2083), + [sym_block_comment] = ACTIONS(3), + }, + [494] = { + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2075), [anon_sym_LBRACE] = ACTIONS(2014), [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_RBRACK] = ACTIONS(2095), [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2073), - [anon_sym_i8] = ACTIONS(2073), - [anon_sym_u16] = ACTIONS(2073), - [anon_sym_i16] = ACTIONS(2073), - [anon_sym_u32] = ACTIONS(2073), - [anon_sym_i32] = ACTIONS(2073), - [anon_sym_u64] = ACTIONS(2073), - [anon_sym_i64] = ACTIONS(2073), - [anon_sym_u128] = ACTIONS(2073), - [anon_sym_i128] = ACTIONS(2073), - [anon_sym_isize] = ACTIONS(2073), - [anon_sym_usize] = ACTIONS(2073), - [anon_sym_f32] = ACTIONS(2073), - [anon_sym_f64] = ACTIONS(2073), - [anon_sym_bool] = ACTIONS(2073), - [anon_sym_str] = ACTIONS(2073), - [anon_sym_char] = ACTIONS(2073), - [aux_sym__non_special_token_token1] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_as] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_default] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_impl] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_mod] = ACTIONS(2073), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_union] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_where] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [sym_mutable_specifier] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2073), - [sym_super] = ACTIONS(2073), - [sym_crate] = ACTIONS(2073), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), [sym_metavariable] = ACTIONS(2026), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [496] = { - [sym__token_pattern] = STATE(251), - [sym_token_tree_pattern] = STATE(251), - [sym_token_binding_pattern] = STATE(251), - [sym_token_repetition_pattern] = STATE(251), - [sym__literal] = STATE(251), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), + [495] = { + [sym__token_pattern] = STATE(500), + [sym_token_tree_pattern] = STATE(500), + [sym_token_binding_pattern] = STATE(500), + [sym_token_repetition_pattern] = STATE(500), + [sym__literal] = STATE(500), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(2097), [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2099), [anon_sym_LBRACE] = ACTIONS(2014), [anon_sym_LBRACK] = ACTIONS(2016), [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), + [anon_sym_u8] = ACTIONS(2097), + [anon_sym_i8] = ACTIONS(2097), + [anon_sym_u16] = ACTIONS(2097), + [anon_sym_i16] = ACTIONS(2097), + [anon_sym_u32] = ACTIONS(2097), + [anon_sym_i32] = ACTIONS(2097), + [anon_sym_u64] = ACTIONS(2097), + [anon_sym_i64] = ACTIONS(2097), + [anon_sym_u128] = ACTIONS(2097), + [anon_sym_i128] = ACTIONS(2097), + [anon_sym_isize] = ACTIONS(2097), + [anon_sym_usize] = ACTIONS(2097), + [anon_sym_f32] = ACTIONS(2097), + [anon_sym_f64] = ACTIONS(2097), + [anon_sym_bool] = ACTIONS(2097), + [anon_sym_str] = ACTIONS(2097), + [anon_sym_char] = ACTIONS(2097), + [aux_sym__non_special_token_token1] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_impl] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_mod] = ACTIONS(2097), + [anon_sym_pub] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_trait] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_union] = ACTIONS(2097), + [anon_sym_unsafe] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_where] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [sym_mutable_specifier] = ACTIONS(2097), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_crate] = ACTIONS(2097), [sym_metavariable] = ACTIONS(2026), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [497] = { - [sym__token_pattern] = STATE(486), - [sym_token_tree_pattern] = STATE(486), - [sym_token_binding_pattern] = STATE(486), - [sym_token_repetition_pattern] = STATE(486), - [sym__literal] = STATE(486), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(486), - [sym_identifier] = ACTIONS(2077), + [496] = { + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), [anon_sym_LPAREN] = ACTIONS(2010), [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2095), [anon_sym_LBRACK] = ACTIONS(2016), [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2077), - [anon_sym_i8] = ACTIONS(2077), - [anon_sym_u16] = ACTIONS(2077), - [anon_sym_i16] = ACTIONS(2077), - [anon_sym_u32] = ACTIONS(2077), - [anon_sym_i32] = ACTIONS(2077), - [anon_sym_u64] = ACTIONS(2077), - [anon_sym_i64] = ACTIONS(2077), - [anon_sym_u128] = ACTIONS(2077), - [anon_sym_i128] = ACTIONS(2077), - [anon_sym_isize] = ACTIONS(2077), - [anon_sym_usize] = ACTIONS(2077), - [anon_sym_f32] = ACTIONS(2077), - [anon_sym_f64] = ACTIONS(2077), - [anon_sym_bool] = ACTIONS(2077), - [anon_sym_str] = ACTIONS(2077), - [anon_sym_char] = ACTIONS(2077), - [aux_sym__non_special_token_token1] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [anon_sym_fn] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_impl] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_loop] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2077), - [anon_sym_mod] = ACTIONS(2077), - [anon_sym_pub] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(2077), - [anon_sym_trait] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_union] = ACTIONS(2077), - [anon_sym_unsafe] = ACTIONS(2077), - [anon_sym_use] = ACTIONS(2077), - [anon_sym_where] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [sym_mutable_specifier] = ACTIONS(2077), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_crate] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), [sym_metavariable] = ACTIONS(2026), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [498] = { - [sym__token_pattern] = STATE(487), - [sym_token_tree_pattern] = STATE(487), - [sym_token_binding_pattern] = STATE(487), - [sym_token_repetition_pattern] = STATE(487), - [sym__literal] = STATE(487), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2079), + [497] = { + [sym__token_pattern] = STATE(496), + [sym_token_tree_pattern] = STATE(496), + [sym_token_binding_pattern] = STATE(496), + [sym_token_repetition_pattern] = STATE(496), + [sym__literal] = STATE(496), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(2101), [anon_sym_LPAREN] = ACTIONS(2010), [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2099), [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2075), [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2079), - [anon_sym_i8] = ACTIONS(2079), - [anon_sym_u16] = ACTIONS(2079), - [anon_sym_i16] = ACTIONS(2079), - [anon_sym_u32] = ACTIONS(2079), - [anon_sym_i32] = ACTIONS(2079), - [anon_sym_u64] = ACTIONS(2079), - [anon_sym_i64] = ACTIONS(2079), - [anon_sym_u128] = ACTIONS(2079), - [anon_sym_i128] = ACTIONS(2079), - [anon_sym_isize] = ACTIONS(2079), - [anon_sym_usize] = ACTIONS(2079), - [anon_sym_f32] = ACTIONS(2079), - [anon_sym_f64] = ACTIONS(2079), - [anon_sym_bool] = ACTIONS(2079), - [anon_sym_str] = ACTIONS(2079), - [anon_sym_char] = ACTIONS(2079), - [aux_sym__non_special_token_token1] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_await] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_impl] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_mod] = ACTIONS(2079), - [anon_sym_pub] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_union] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_where] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [sym_mutable_specifier] = ACTIONS(2079), + [anon_sym_u8] = ACTIONS(2101), + [anon_sym_i8] = ACTIONS(2101), + [anon_sym_u16] = ACTIONS(2101), + [anon_sym_i16] = ACTIONS(2101), + [anon_sym_u32] = ACTIONS(2101), + [anon_sym_i32] = ACTIONS(2101), + [anon_sym_u64] = ACTIONS(2101), + [anon_sym_i64] = ACTIONS(2101), + [anon_sym_u128] = ACTIONS(2101), + [anon_sym_i128] = ACTIONS(2101), + [anon_sym_isize] = ACTIONS(2101), + [anon_sym_usize] = ACTIONS(2101), + [anon_sym_f32] = ACTIONS(2101), + [anon_sym_f64] = ACTIONS(2101), + [anon_sym_bool] = ACTIONS(2101), + [anon_sym_str] = ACTIONS(2101), + [anon_sym_char] = ACTIONS(2101), + [aux_sym__non_special_token_token1] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2101), + [anon_sym_as] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_await] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_fn] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_impl] = ACTIONS(2101), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_loop] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_mod] = ACTIONS(2101), + [anon_sym_pub] = ACTIONS(2101), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_trait] = ACTIONS(2101), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_union] = ACTIONS(2101), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_where] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [sym_mutable_specifier] = ACTIONS(2101), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2079), - [sym_super] = ACTIONS(2079), - [sym_crate] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2101), + [sym_super] = ACTIONS(2101), + [sym_crate] = ACTIONS(2101), [sym_metavariable] = ACTIONS(2026), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [499] = { - [sym__token_pattern] = STATE(251), - [sym_token_tree_pattern] = STATE(251), - [sym_token_binding_pattern] = STATE(251), - [sym_token_repetition_pattern] = STATE(251), - [sym__literal] = STATE(251), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_pattern_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(2032), + [498] = { + [sym__token_pattern] = STATE(494), + [sym_token_tree_pattern] = STATE(494), + [sym_token_binding_pattern] = STATE(494), + [sym_token_repetition_pattern] = STATE(494), + [sym__literal] = STATE(494), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(2103), [anon_sym_LPAREN] = ACTIONS(2010), [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2071), [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_RBRACK] = ACTIONS(2099), [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), + [anon_sym_u8] = ACTIONS(2103), + [anon_sym_i8] = ACTIONS(2103), + [anon_sym_u16] = ACTIONS(2103), + [anon_sym_i16] = ACTIONS(2103), + [anon_sym_u32] = ACTIONS(2103), + [anon_sym_i32] = ACTIONS(2103), + [anon_sym_u64] = ACTIONS(2103), + [anon_sym_i64] = ACTIONS(2103), + [anon_sym_u128] = ACTIONS(2103), + [anon_sym_i128] = ACTIONS(2103), + [anon_sym_isize] = ACTIONS(2103), + [anon_sym_usize] = ACTIONS(2103), + [anon_sym_f32] = ACTIONS(2103), + [anon_sym_f64] = ACTIONS(2103), + [anon_sym_bool] = ACTIONS(2103), + [anon_sym_str] = ACTIONS(2103), + [anon_sym_char] = ACTIONS(2103), + [aux_sym__non_special_token_token1] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_as] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_default] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [anon_sym_fn] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_impl] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_loop] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2103), + [anon_sym_mod] = ACTIONS(2103), + [anon_sym_pub] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2103), + [anon_sym_trait] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_union] = ACTIONS(2103), + [anon_sym_unsafe] = ACTIONS(2103), + [anon_sym_use] = ACTIONS(2103), + [anon_sym_where] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [sym_mutable_specifier] = ACTIONS(2103), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_crate] = ACTIONS(2103), [sym_metavariable] = ACTIONS(2026), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [500] = { - [sym_attribute_item] = STATE(534), - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_macro_invocation] = STATE(2345), - [sym_scoped_identifier] = STATE(1557), - [sym_scoped_type_identifier] = STATE(1913), - [sym_match_arm] = STATE(500), - [sym_match_pattern] = STATE(2345), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1933), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(534), - [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_u8] = ACTIONS(2090), - [anon_sym_i8] = ACTIONS(2090), - [anon_sym_u16] = ACTIONS(2090), - [anon_sym_i16] = ACTIONS(2090), - [anon_sym_u32] = ACTIONS(2090), - [anon_sym_i32] = ACTIONS(2090), - [anon_sym_u64] = ACTIONS(2090), - [anon_sym_i64] = ACTIONS(2090), - [anon_sym_u128] = ACTIONS(2090), - [anon_sym_i128] = ACTIONS(2090), - [anon_sym_isize] = ACTIONS(2090), - [anon_sym_usize] = ACTIONS(2090), - [anon_sym_f32] = ACTIONS(2090), - [anon_sym_f64] = ACTIONS(2090), - [anon_sym_bool] = ACTIONS(2090), - [anon_sym_str] = ACTIONS(2090), - [anon_sym_char] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2096), - [anon_sym_union] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(2099), - [anon_sym_ref] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_COLON_COLON] = ACTIONS(2108), - [anon_sym__] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2114), - [sym_mutable_specifier] = ACTIONS(2117), - [anon_sym_DOT_DOT] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2123), - [sym_integer_literal] = ACTIONS(2126), - [aux_sym_string_literal_token1] = ACTIONS(2129), - [sym_char_literal] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_crate] = ACTIONS(2135), - [sym_metavariable] = ACTIONS(2138), - [sym_raw_string_literal] = ACTIONS(2126), - [sym_float_literal] = ACTIONS(2126), - [sym_block_comment] = ACTIONS(3), - }, - [501] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [502] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), + [499] = { + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2026), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [503] = { - [sym_token_tree] = STATE(507), - [sym_token_repetition] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2157), - [anon_sym_i8] = ACTIONS(2157), - [anon_sym_u16] = ACTIONS(2157), - [anon_sym_i16] = ACTIONS(2157), - [anon_sym_u32] = ACTIONS(2157), - [anon_sym_i32] = ACTIONS(2157), - [anon_sym_u64] = ACTIONS(2157), - [anon_sym_i64] = ACTIONS(2157), - [anon_sym_u128] = ACTIONS(2157), - [anon_sym_i128] = ACTIONS(2157), - [anon_sym_isize] = ACTIONS(2157), - [anon_sym_usize] = ACTIONS(2157), - [anon_sym_f32] = ACTIONS(2157), - [anon_sym_f64] = ACTIONS(2157), - [anon_sym_bool] = ACTIONS(2157), - [anon_sym_str] = ACTIONS(2157), - [anon_sym_char] = ACTIONS(2157), - [aux_sym__non_special_token_token1] = ACTIONS(2157), - [anon_sym_SQUOTE] = ACTIONS(2157), - [anon_sym_as] = ACTIONS(2157), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_default] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - [anon_sym_fn] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_impl] = ACTIONS(2157), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_loop] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2157), - [anon_sym_mod] = ACTIONS(2157), - [anon_sym_pub] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_static] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2157), - [anon_sym_trait] = ACTIONS(2157), - [anon_sym_type] = ACTIONS(2157), - [anon_sym_union] = ACTIONS(2157), - [anon_sym_unsafe] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_where] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [sym_mutable_specifier] = ACTIONS(2157), + [500] = { + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2157), - [sym_super] = ACTIONS(2157), - [sym_crate] = ACTIONS(2157), - [sym_metavariable] = ACTIONS(2161), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2026), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [504] = { - [sym_token_tree] = STATE(508), - [sym_token_repetition] = STATE(508), - [sym__literal] = STATE(508), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2163), - [anon_sym_i8] = ACTIONS(2163), - [anon_sym_u16] = ACTIONS(2163), - [anon_sym_i16] = ACTIONS(2163), - [anon_sym_u32] = ACTIONS(2163), - [anon_sym_i32] = ACTIONS(2163), - [anon_sym_u64] = ACTIONS(2163), - [anon_sym_i64] = ACTIONS(2163), - [anon_sym_u128] = ACTIONS(2163), - [anon_sym_i128] = ACTIONS(2163), - [anon_sym_isize] = ACTIONS(2163), - [anon_sym_usize] = ACTIONS(2163), - [anon_sym_f32] = ACTIONS(2163), - [anon_sym_f64] = ACTIONS(2163), - [anon_sym_bool] = ACTIONS(2163), - [anon_sym_str] = ACTIONS(2163), - [anon_sym_char] = ACTIONS(2163), - [aux_sym__non_special_token_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [anon_sym_fn] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_impl] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_loop] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_mod] = ACTIONS(2163), - [anon_sym_pub] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2163), - [anon_sym_trait] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2163), - [anon_sym_unsafe] = ACTIONS(2163), - [anon_sym_use] = ACTIONS(2163), - [anon_sym_where] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [sym_mutable_specifier] = ACTIONS(2163), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_crate] = ACTIONS(2163), - [sym_metavariable] = ACTIONS(2165), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [501] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(501), + [sym_match_pattern] = STATE(2349), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_u8] = ACTIONS(2116), + [anon_sym_i8] = ACTIONS(2116), + [anon_sym_u16] = ACTIONS(2116), + [anon_sym_i16] = ACTIONS(2116), + [anon_sym_u32] = ACTIONS(2116), + [anon_sym_i32] = ACTIONS(2116), + [anon_sym_u64] = ACTIONS(2116), + [anon_sym_i64] = ACTIONS(2116), + [anon_sym_u128] = ACTIONS(2116), + [anon_sym_i128] = ACTIONS(2116), + [anon_sym_isize] = ACTIONS(2116), + [anon_sym_usize] = ACTIONS(2116), + [anon_sym_f32] = ACTIONS(2116), + [anon_sym_f64] = ACTIONS(2116), + [anon_sym_bool] = ACTIONS(2116), + [anon_sym_str] = ACTIONS(2116), + [anon_sym_char] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_POUND] = ACTIONS(2125), + [anon_sym_ref] = ACTIONS(2128), + [anon_sym_LT] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym__] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2140), + [sym_mutable_specifier] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2149), + [sym_integer_literal] = ACTIONS(2152), + [aux_sym_string_literal_token1] = ACTIONS(2155), + [sym_char_literal] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2158), + [anon_sym_false] = ACTIONS(2158), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2164), + [sym_raw_string_literal] = ACTIONS(2152), + [sym_float_literal] = ACTIONS(2152), [sym_block_comment] = ACTIONS(3), }, - [505] = { - [sym_token_tree] = STATE(509), - [sym_token_repetition] = STATE(509), - [sym__literal] = STATE(509), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(509), + [502] = { + [sym_delim_token_tree] = STATE(522), + [sym__delim_tokens] = STATE(522), + [sym__non_delim_token] = STATE(522), + [sym__literal] = STATE(522), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(522), [sym_identifier] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2159), - [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2177), [anon_sym_u8] = ACTIONS(2167), [anon_sym_i8] = ACTIONS(2167), [anon_sym_u16] = ACTIONS(2167), @@ -60913,1143 +60773,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2167), [anon_sym_while] = ACTIONS(2167), [sym_mutable_specifier] = ACTIONS(2167), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2167), [sym_super] = ACTIONS(2167), [sym_crate] = ACTIONS(2167), - [sym_metavariable] = ACTIONS(2169), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [506] = { - [sym_token_tree] = STATE(501), - [sym_token_repetition] = STATE(501), - [sym__literal] = STATE(501), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2171), - [anon_sym_i8] = ACTIONS(2171), - [anon_sym_u16] = ACTIONS(2171), - [anon_sym_i16] = ACTIONS(2171), - [anon_sym_u32] = ACTIONS(2171), - [anon_sym_i32] = ACTIONS(2171), - [anon_sym_u64] = ACTIONS(2171), - [anon_sym_i64] = ACTIONS(2171), - [anon_sym_u128] = ACTIONS(2171), - [anon_sym_i128] = ACTIONS(2171), - [anon_sym_isize] = ACTIONS(2171), - [anon_sym_usize] = ACTIONS(2171), - [anon_sym_f32] = ACTIONS(2171), - [anon_sym_f64] = ACTIONS(2171), - [anon_sym_bool] = ACTIONS(2171), - [anon_sym_str] = ACTIONS(2171), - [anon_sym_char] = ACTIONS(2171), - [aux_sym__non_special_token_token1] = ACTIONS(2171), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_as] = ACTIONS(2171), - [anon_sym_async] = ACTIONS(2171), - [anon_sym_await] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_default] = ACTIONS(2171), - [anon_sym_enum] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(2171), - [anon_sym_let] = ACTIONS(2171), - [anon_sym_loop] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_mod] = ACTIONS(2171), - [anon_sym_pub] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_trait] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2171), - [anon_sym_unsafe] = ACTIONS(2171), - [anon_sym_use] = ACTIONS(2171), - [anon_sym_where] = ACTIONS(2171), - [anon_sym_while] = ACTIONS(2171), - [sym_mutable_specifier] = ACTIONS(2171), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2171), - [sym_super] = ACTIONS(2171), - [sym_crate] = ACTIONS(2171), - [sym_metavariable] = ACTIONS(2175), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [507] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [508] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2177), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [509] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2177), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [510] = { - [sym_token_tree] = STATE(515), - [sym_token_repetition] = STATE(515), - [sym__literal] = STATE(515), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(515), - [sym_identifier] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2179), - [anon_sym_i8] = ACTIONS(2179), - [anon_sym_u16] = ACTIONS(2179), - [anon_sym_i16] = ACTIONS(2179), - [anon_sym_u32] = ACTIONS(2179), - [anon_sym_i32] = ACTIONS(2179), - [anon_sym_u64] = ACTIONS(2179), - [anon_sym_i64] = ACTIONS(2179), - [anon_sym_u128] = ACTIONS(2179), - [anon_sym_i128] = ACTIONS(2179), - [anon_sym_isize] = ACTIONS(2179), - [anon_sym_usize] = ACTIONS(2179), - [anon_sym_f32] = ACTIONS(2179), - [anon_sym_f64] = ACTIONS(2179), - [anon_sym_bool] = ACTIONS(2179), - [anon_sym_str] = ACTIONS(2179), - [anon_sym_char] = ACTIONS(2179), - [aux_sym__non_special_token_token1] = ACTIONS(2179), - [anon_sym_SQUOTE] = ACTIONS(2179), - [anon_sym_as] = ACTIONS(2179), - [anon_sym_async] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_default] = ACTIONS(2179), - [anon_sym_enum] = ACTIONS(2179), - [anon_sym_fn] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_impl] = ACTIONS(2179), - [anon_sym_let] = ACTIONS(2179), - [anon_sym_loop] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_mod] = ACTIONS(2179), - [anon_sym_pub] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_static] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_trait] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2179), - [anon_sym_unsafe] = ACTIONS(2179), - [anon_sym_use] = ACTIONS(2179), - [anon_sym_where] = ACTIONS(2179), - [anon_sym_while] = ACTIONS(2179), - [sym_mutable_specifier] = ACTIONS(2179), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2179), - [sym_super] = ACTIONS(2179), - [sym_crate] = ACTIONS(2179), - [sym_metavariable] = ACTIONS(2181), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [511] = { - [sym_token_tree] = STATE(516), - [sym_token_repetition] = STATE(516), - [sym__literal] = STATE(516), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(516), - [sym_identifier] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2183), - [anon_sym_i8] = ACTIONS(2183), - [anon_sym_u16] = ACTIONS(2183), - [anon_sym_i16] = ACTIONS(2183), - [anon_sym_u32] = ACTIONS(2183), - [anon_sym_i32] = ACTIONS(2183), - [anon_sym_u64] = ACTIONS(2183), - [anon_sym_i64] = ACTIONS(2183), - [anon_sym_u128] = ACTIONS(2183), - [anon_sym_i128] = ACTIONS(2183), - [anon_sym_isize] = ACTIONS(2183), - [anon_sym_usize] = ACTIONS(2183), - [anon_sym_f32] = ACTIONS(2183), - [anon_sym_f64] = ACTIONS(2183), - [anon_sym_bool] = ACTIONS(2183), - [anon_sym_str] = ACTIONS(2183), - [anon_sym_char] = ACTIONS(2183), - [aux_sym__non_special_token_token1] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_impl] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_mod] = ACTIONS(2183), - [anon_sym_pub] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2183), - [anon_sym_trait] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_union] = ACTIONS(2183), - [anon_sym_unsafe] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_where] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [sym_mutable_specifier] = ACTIONS(2183), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_crate] = ACTIONS(2183), - [sym_metavariable] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [512] = { - [sym_token_tree] = STATE(526), - [sym_token_repetition] = STATE(526), - [sym__literal] = STATE(526), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(526), - [sym_identifier] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2187), - [anon_sym_i8] = ACTIONS(2187), - [anon_sym_u16] = ACTIONS(2187), - [anon_sym_i16] = ACTIONS(2187), - [anon_sym_u32] = ACTIONS(2187), - [anon_sym_i32] = ACTIONS(2187), - [anon_sym_u64] = ACTIONS(2187), - [anon_sym_i64] = ACTIONS(2187), - [anon_sym_u128] = ACTIONS(2187), - [anon_sym_i128] = ACTIONS(2187), - [anon_sym_isize] = ACTIONS(2187), - [anon_sym_usize] = ACTIONS(2187), - [anon_sym_f32] = ACTIONS(2187), - [anon_sym_f64] = ACTIONS(2187), - [anon_sym_bool] = ACTIONS(2187), - [anon_sym_str] = ACTIONS(2187), - [anon_sym_char] = ACTIONS(2187), - [aux_sym__non_special_token_token1] = ACTIONS(2187), - [anon_sym_SQUOTE] = ACTIONS(2187), - [anon_sym_as] = ACTIONS(2187), - [anon_sym_async] = ACTIONS(2187), - [anon_sym_await] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_default] = ACTIONS(2187), - [anon_sym_enum] = ACTIONS(2187), - [anon_sym_fn] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_impl] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_loop] = ACTIONS(2187), - [anon_sym_match] = ACTIONS(2187), - [anon_sym_mod] = ACTIONS(2187), - [anon_sym_pub] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2187), - [anon_sym_trait] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2187), - [anon_sym_union] = ACTIONS(2187), - [anon_sym_unsafe] = ACTIONS(2187), - [anon_sym_use] = ACTIONS(2187), - [anon_sym_where] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [sym_mutable_specifier] = ACTIONS(2187), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2187), - [sym_super] = ACTIONS(2187), - [sym_crate] = ACTIONS(2187), - [sym_metavariable] = ACTIONS(2191), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [503] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [513] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2193), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [504] = { + [sym_delim_token_tree] = STATE(521), + [sym__delim_tokens] = STATE(521), + [sym__non_delim_token] = STATE(521), + [sym__literal] = STATE(521), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2193), + [anon_sym_u8] = ACTIONS(2191), + [anon_sym_i8] = ACTIONS(2191), + [anon_sym_u16] = ACTIONS(2191), + [anon_sym_i16] = ACTIONS(2191), + [anon_sym_u32] = ACTIONS(2191), + [anon_sym_i32] = ACTIONS(2191), + [anon_sym_u64] = ACTIONS(2191), + [anon_sym_i64] = ACTIONS(2191), + [anon_sym_u128] = ACTIONS(2191), + [anon_sym_i128] = ACTIONS(2191), + [anon_sym_isize] = ACTIONS(2191), + [anon_sym_usize] = ACTIONS(2191), + [anon_sym_f32] = ACTIONS(2191), + [anon_sym_f64] = ACTIONS(2191), + [anon_sym_bool] = ACTIONS(2191), + [anon_sym_str] = ACTIONS(2191), + [anon_sym_char] = ACTIONS(2191), + [aux_sym__non_special_token_token1] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_impl] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_loop] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_mod] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_trait] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_use] = ACTIONS(2191), + [anon_sym_where] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [sym_mutable_specifier] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_crate] = ACTIONS(2191), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [514] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), + [505] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), [anon_sym_RBRACK] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [515] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [516] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [517] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), + [506] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [518] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [519] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [520] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [521] = { - [sym_token_tree] = STATE(513), - [sym_token_repetition] = STATE(513), - [sym__literal] = STATE(513), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(513), + [507] = { + [sym_token_tree] = STATE(538), + [sym_token_repetition] = STATE(538), + [sym__literal] = STATE(538), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(538), [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2199), - [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), [anon_sym_u8] = ACTIONS(2197), [anon_sym_i8] = ACTIONS(2197), [anon_sym_u16] = ACTIONS(2197), @@ -62102,398 +61147,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2197), [sym_super] = ACTIONS(2197), [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [522] = { - [sym_token_tree] = STATE(518), - [sym_token_repetition] = STATE(518), - [sym__literal] = STATE(518), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(518), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2203), - [anon_sym_i8] = ACTIONS(2203), - [anon_sym_u16] = ACTIONS(2203), - [anon_sym_i16] = ACTIONS(2203), - [anon_sym_u32] = ACTIONS(2203), - [anon_sym_i32] = ACTIONS(2203), - [anon_sym_u64] = ACTIONS(2203), - [anon_sym_i64] = ACTIONS(2203), - [anon_sym_u128] = ACTIONS(2203), - [anon_sym_i128] = ACTIONS(2203), - [anon_sym_isize] = ACTIONS(2203), - [anon_sym_usize] = ACTIONS(2203), - [anon_sym_f32] = ACTIONS(2203), - [anon_sym_f64] = ACTIONS(2203), - [anon_sym_bool] = ACTIONS(2203), - [anon_sym_str] = ACTIONS(2203), - [anon_sym_char] = ACTIONS(2203), - [aux_sym__non_special_token_token1] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_mod] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_trait] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_where] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [sym_mutable_specifier] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_metavariable] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2209), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [523] = { - [sym_token_tree] = STATE(519), - [sym_token_repetition] = STATE(519), - [sym__literal] = STATE(519), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2207), - [anon_sym_i8] = ACTIONS(2207), - [anon_sym_u16] = ACTIONS(2207), - [anon_sym_i16] = ACTIONS(2207), - [anon_sym_u32] = ACTIONS(2207), - [anon_sym_i32] = ACTIONS(2207), - [anon_sym_u64] = ACTIONS(2207), - [anon_sym_i64] = ACTIONS(2207), - [anon_sym_u128] = ACTIONS(2207), - [anon_sym_i128] = ACTIONS(2207), - [anon_sym_isize] = ACTIONS(2207), - [anon_sym_usize] = ACTIONS(2207), - [anon_sym_f32] = ACTIONS(2207), - [anon_sym_f64] = ACTIONS(2207), - [anon_sym_bool] = ACTIONS(2207), - [anon_sym_str] = ACTIONS(2207), - [anon_sym_char] = ACTIONS(2207), - [aux_sym__non_special_token_token1] = ACTIONS(2207), - [anon_sym_SQUOTE] = ACTIONS(2207), - [anon_sym_as] = ACTIONS(2207), - [anon_sym_async] = ACTIONS(2207), - [anon_sym_await] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [anon_sym_continue] = ACTIONS(2207), - [anon_sym_default] = ACTIONS(2207), - [anon_sym_enum] = ACTIONS(2207), - [anon_sym_fn] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_impl] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_loop] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2207), - [anon_sym_mod] = ACTIONS(2207), - [anon_sym_pub] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_static] = ACTIONS(2207), - [anon_sym_struct] = ACTIONS(2207), - [anon_sym_trait] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2207), - [anon_sym_union] = ACTIONS(2207), - [anon_sym_unsafe] = ACTIONS(2207), - [anon_sym_use] = ACTIONS(2207), - [anon_sym_where] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [sym_mutable_specifier] = ACTIONS(2207), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2207), - [sym_super] = ACTIONS(2207), - [sym_crate] = ACTIONS(2207), - [sym_metavariable] = ACTIONS(2209), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [508] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [524] = { - [sym_token_tree] = STATE(514), - [sym_token_repetition] = STATE(514), - [sym__literal] = STATE(514), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(514), - [sym_identifier] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2211), - [anon_sym_i8] = ACTIONS(2211), - [anon_sym_u16] = ACTIONS(2211), - [anon_sym_i16] = ACTIONS(2211), - [anon_sym_u32] = ACTIONS(2211), - [anon_sym_i32] = ACTIONS(2211), - [anon_sym_u64] = ACTIONS(2211), - [anon_sym_i64] = ACTIONS(2211), - [anon_sym_u128] = ACTIONS(2211), - [anon_sym_i128] = ACTIONS(2211), - [anon_sym_isize] = ACTIONS(2211), - [anon_sym_usize] = ACTIONS(2211), - [anon_sym_f32] = ACTIONS(2211), - [anon_sym_f64] = ACTIONS(2211), - [anon_sym_bool] = ACTIONS(2211), - [anon_sym_str] = ACTIONS(2211), - [anon_sym_char] = ACTIONS(2211), - [aux_sym__non_special_token_token1] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_enum] = ACTIONS(2211), - [anon_sym_fn] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_impl] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_mod] = ACTIONS(2211), - [anon_sym_pub] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2211), - [anon_sym_trait] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_union] = ACTIONS(2211), - [anon_sym_unsafe] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_where] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [sym_mutable_specifier] = ACTIONS(2211), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2211), - [sym_super] = ACTIONS(2211), - [sym_crate] = ACTIONS(2211), - [sym_metavariable] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [509] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [525] = { - [sym_token_tree] = STATE(517), - [sym_token_repetition] = STATE(517), - [sym__literal] = STATE(517), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(517), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2217), - [anon_sym_i8] = ACTIONS(2217), - [anon_sym_u16] = ACTIONS(2217), - [anon_sym_i16] = ACTIONS(2217), - [anon_sym_u32] = ACTIONS(2217), - [anon_sym_i32] = ACTIONS(2217), - [anon_sym_u64] = ACTIONS(2217), - [anon_sym_i64] = ACTIONS(2217), - [anon_sym_u128] = ACTIONS(2217), - [anon_sym_i128] = ACTIONS(2217), - [anon_sym_isize] = ACTIONS(2217), - [anon_sym_usize] = ACTIONS(2217), - [anon_sym_f32] = ACTIONS(2217), - [anon_sym_f64] = ACTIONS(2217), - [anon_sym_bool] = ACTIONS(2217), - [anon_sym_str] = ACTIONS(2217), - [anon_sym_char] = ACTIONS(2217), - [aux_sym__non_special_token_token1] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_await] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_default] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_impl] = ACTIONS(2217), - [anon_sym_let] = ACTIONS(2217), - [anon_sym_loop] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_mod] = ACTIONS(2217), - [anon_sym_pub] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_trait] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_use] = ACTIONS(2217), - [anon_sym_where] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [sym_mutable_specifier] = ACTIONS(2217), + [510] = { + [sym_token_tree] = STATE(539), + [sym_token_repetition] = STATE(539), + [sym__literal] = STATE(539), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2213), + [anon_sym_i8] = ACTIONS(2213), + [anon_sym_u16] = ACTIONS(2213), + [anon_sym_i16] = ACTIONS(2213), + [anon_sym_u32] = ACTIONS(2213), + [anon_sym_i32] = ACTIONS(2213), + [anon_sym_u64] = ACTIONS(2213), + [anon_sym_i64] = ACTIONS(2213), + [anon_sym_u128] = ACTIONS(2213), + [anon_sym_i128] = ACTIONS(2213), + [anon_sym_isize] = ACTIONS(2213), + [anon_sym_usize] = ACTIONS(2213), + [anon_sym_f32] = ACTIONS(2213), + [anon_sym_f64] = ACTIONS(2213), + [anon_sym_bool] = ACTIONS(2213), + [anon_sym_str] = ACTIONS(2213), + [anon_sym_char] = ACTIONS(2213), + [aux_sym__non_special_token_token1] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_impl] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_mod] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_where] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [sym_mutable_specifier] = ACTIONS(2213), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2217), - [sym_super] = ACTIONS(2217), - [sym_crate] = ACTIONS(2217), - [sym_metavariable] = ACTIONS(2219), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_crate] = ACTIONS(2213), + [sym_metavariable] = ACTIONS(2217), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [526] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), + [511] = { + [sym_token_tree] = STATE(540), + [sym_token_repetition] = STATE(540), + [sym__literal] = STATE(540), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(540), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_where] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [sym_mutable_specifier] = ACTIONS(2219), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2221), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [527] = { - [sym_token_tree] = STATE(520), - [sym_token_repetition] = STATE(520), - [sym__literal] = STATE(520), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(520), + [512] = { + [sym_delim_token_tree] = STATE(503), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(503), [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2227), [anon_sym_u8] = ACTIONS(2223), [anon_sym_i8] = ACTIONS(2223), [anon_sym_u16] = ACTIONS(2223), @@ -62541,864 +61513,2500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2223), [anon_sym_while] = ACTIONS(2223), [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2223), [sym_super] = ACTIONS(2223), [sym_crate] = ACTIONS(2223), - [sym_metavariable] = ACTIONS(2225), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [528] = { - [sym_token_tree] = STATE(530), - [sym_token_repetition] = STATE(530), - [sym__literal] = STATE(530), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(530), - [sym_identifier] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2143), + [513] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u128] = ACTIONS(2227), - [anon_sym_i128] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_str] = ACTIONS(2227), - [anon_sym_char] = ACTIONS(2227), - [aux_sym__non_special_token_token1] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [anon_sym_fn] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_impl] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_loop] = ACTIONS(2227), - [anon_sym_match] = ACTIONS(2227), - [anon_sym_mod] = ACTIONS(2227), - [anon_sym_pub] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_trait] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2227), - [anon_sym_unsafe] = ACTIONS(2227), - [anon_sym_use] = ACTIONS(2227), - [anon_sym_where] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [sym_mutable_specifier] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [514] = { + [sym_token_tree] = STATE(545), + [sym_token_repetition] = STATE(545), + [sym__literal] = STATE(545), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(545), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2231), + [anon_sym_i8] = ACTIONS(2231), + [anon_sym_u16] = ACTIONS(2231), + [anon_sym_i16] = ACTIONS(2231), + [anon_sym_u32] = ACTIONS(2231), + [anon_sym_i32] = ACTIONS(2231), + [anon_sym_u64] = ACTIONS(2231), + [anon_sym_i64] = ACTIONS(2231), + [anon_sym_u128] = ACTIONS(2231), + [anon_sym_i128] = ACTIONS(2231), + [anon_sym_isize] = ACTIONS(2231), + [anon_sym_usize] = ACTIONS(2231), + [anon_sym_f32] = ACTIONS(2231), + [anon_sym_f64] = ACTIONS(2231), + [anon_sym_bool] = ACTIONS(2231), + [anon_sym_str] = ACTIONS(2231), + [anon_sym_char] = ACTIONS(2231), + [aux_sym__non_special_token_token1] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_async] = ACTIONS(2231), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(2231), + [anon_sym_const] = ACTIONS(2231), + [anon_sym_continue] = ACTIONS(2231), + [anon_sym_default] = ACTIONS(2231), + [anon_sym_enum] = ACTIONS(2231), + [anon_sym_fn] = ACTIONS(2231), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_impl] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_loop] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_mod] = ACTIONS(2231), + [anon_sym_pub] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_static] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2231), + [anon_sym_trait] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_union] = ACTIONS(2231), + [anon_sym_unsafe] = ACTIONS(2231), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_where] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [sym_mutable_specifier] = ACTIONS(2231), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_crate] = ACTIONS(2227), - [sym_metavariable] = ACTIONS(2231), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2233), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [529] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), + [515] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [516] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2237), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [530] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [aux_sym__non_special_token_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_where] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [sym_mutable_specifier] = ACTIONS(2141), + [518] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2153), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [531] = { - [sym_token_tree] = STATE(502), - [sym_token_repetition] = STATE(502), - [sym__literal] = STATE(502), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(502), - [sym_identifier] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_RBRACK] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2233), - [anon_sym_i8] = ACTIONS(2233), - [anon_sym_u16] = ACTIONS(2233), - [anon_sym_i16] = ACTIONS(2233), - [anon_sym_u32] = ACTIONS(2233), - [anon_sym_i32] = ACTIONS(2233), - [anon_sym_u64] = ACTIONS(2233), - [anon_sym_i64] = ACTIONS(2233), - [anon_sym_u128] = ACTIONS(2233), - [anon_sym_i128] = ACTIONS(2233), - [anon_sym_isize] = ACTIONS(2233), - [anon_sym_usize] = ACTIONS(2233), - [anon_sym_f32] = ACTIONS(2233), - [anon_sym_f64] = ACTIONS(2233), - [anon_sym_bool] = ACTIONS(2233), - [anon_sym_str] = ACTIONS(2233), - [anon_sym_char] = ACTIONS(2233), - [aux_sym__non_special_token_token1] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_impl] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_loop] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_mod] = ACTIONS(2233), - [anon_sym_pub] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_trait] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_union] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_where] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [sym_mutable_specifier] = ACTIONS(2233), + [519] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_crate] = ACTIONS(2233), - [sym_metavariable] = ACTIONS(2235), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [532] = { - [sym_token_tree] = STATE(529), - [sym_token_repetition] = STATE(529), - [sym__literal] = STATE(529), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(529), - [sym_identifier] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2237), - [anon_sym_i8] = ACTIONS(2237), - [anon_sym_u16] = ACTIONS(2237), - [anon_sym_i16] = ACTIONS(2237), - [anon_sym_u32] = ACTIONS(2237), - [anon_sym_i32] = ACTIONS(2237), - [anon_sym_u64] = ACTIONS(2237), - [anon_sym_i64] = ACTIONS(2237), - [anon_sym_u128] = ACTIONS(2237), - [anon_sym_i128] = ACTIONS(2237), - [anon_sym_isize] = ACTIONS(2237), - [anon_sym_usize] = ACTIONS(2237), - [anon_sym_f32] = ACTIONS(2237), - [anon_sym_f64] = ACTIONS(2237), - [anon_sym_bool] = ACTIONS(2237), - [anon_sym_str] = ACTIONS(2237), - [anon_sym_char] = ACTIONS(2237), - [aux_sym__non_special_token_token1] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_impl] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_loop] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_mod] = ACTIONS(2237), - [anon_sym_pub] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_trait] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_union] = ACTIONS(2237), - [anon_sym_unsafe] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_where] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [sym_mutable_specifier] = ACTIONS(2237), + [520] = { + [sym_token_tree] = STATE(517), + [sym_token_repetition] = STATE(517), + [sym__literal] = STATE(517), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(517), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [aux_sym__non_special_token_token1] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_mod] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_where] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [sym_mutable_specifier] = ACTIONS(2241), [sym_integer_literal] = ACTIONS(2020), [aux_sym_string_literal_token1] = ACTIONS(2022), [sym_char_literal] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2024), [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_crate] = ACTIONS(2237), - [sym_metavariable] = ACTIONS(2239), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_crate] = ACTIONS(2241), + [sym_metavariable] = ACTIONS(2245), [sym_raw_string_literal] = ACTIONS(2020), [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [533] = { - [sym_attribute_item] = STATE(594), - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_macro_invocation] = STATE(2409), - [sym_scoped_identifier] = STATE(1557), - [sym_scoped_type_identifier] = STATE(1913), - [sym_match_pattern] = STATE(2419), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1933), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(594), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [521] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [534] = { - [sym_attribute_item] = STATE(594), - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_macro_invocation] = STATE(2409), - [sym_scoped_identifier] = STATE(1557), - [sym_scoped_type_identifier] = STATE(1913), - [sym_match_pattern] = STATE(2409), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1933), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(594), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [522] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [535] = { - [sym_attribute_item] = STATE(545), - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym_visibility_modifier] = STATE(686), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(545), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), + [523] = { + [sym_delim_token_tree] = STATE(505), + [sym__delim_tokens] = STATE(505), + [sym__non_delim_token] = STATE(505), + [sym__literal] = STATE(505), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2251), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u128] = ACTIONS(2247), + [anon_sym_i128] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_str] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [aux_sym__non_special_token_token1] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_as] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2247), + [anon_sym_enum] = ACTIONS(2247), + [anon_sym_fn] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_impl] = ACTIONS(2247), + [anon_sym_let] = ACTIONS(2247), + [anon_sym_loop] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_mod] = ACTIONS(2247), [anon_sym_pub] = ACTIONS(2247), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(2251), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), - [sym_metavariable] = ACTIONS(908), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_static] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2247), + [anon_sym_trait] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(2247), + [anon_sym_unsafe] = ACTIONS(2247), + [anon_sym_use] = ACTIONS(2247), + [anon_sym_where] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [sym_mutable_specifier] = ACTIONS(2247), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2247), + [sym_super] = ACTIONS(2247), + [sym_crate] = ACTIONS(2247), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [536] = { - [sym_attribute_item] = STATE(543), - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym_visibility_modifier] = STATE(638), - [sym__type] = STATE(1950), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(543), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), + [524] = { + [sym_delim_token_tree] = STATE(506), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_u8] = ACTIONS(2253), + [anon_sym_i8] = ACTIONS(2253), + [anon_sym_u16] = ACTIONS(2253), + [anon_sym_i16] = ACTIONS(2253), + [anon_sym_u32] = ACTIONS(2253), + [anon_sym_i32] = ACTIONS(2253), + [anon_sym_u64] = ACTIONS(2253), + [anon_sym_i64] = ACTIONS(2253), + [anon_sym_u128] = ACTIONS(2253), + [anon_sym_i128] = ACTIONS(2253), + [anon_sym_isize] = ACTIONS(2253), + [anon_sym_usize] = ACTIONS(2253), + [anon_sym_f32] = ACTIONS(2253), + [anon_sym_f64] = ACTIONS(2253), + [anon_sym_bool] = ACTIONS(2253), + [anon_sym_str] = ACTIONS(2253), + [anon_sym_char] = ACTIONS(2253), + [aux_sym__non_special_token_token1] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_impl] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_mod] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_where] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [sym_mutable_specifier] = ACTIONS(2253), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), [sym_crate] = ACTIONS(2253), - [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [537] = { - [sym_attribute_item] = STATE(543), - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym_visibility_modifier] = STATE(638), - [sym__type] = STATE(1950), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(543), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), + [525] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), - [sym_metavariable] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [538] = { - [sym_attribute_item] = STATE(543), - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym_visibility_modifier] = STATE(638), - [sym__type] = STATE(1950), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(543), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), - [sym_metavariable] = ACTIONS(908), + [526] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [539] = { - [sym_attribute_item] = STATE(543), - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym_visibility_modifier] = STATE(638), - [sym__type] = STATE(1950), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(543), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), + [527] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [528] = { + [sym_delim_token_tree] = STATE(532), + [sym__delim_tokens] = STATE(532), + [sym__non_delim_token] = STATE(532), + [sym__literal] = STATE(532), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(532), + [sym_identifier] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_u8] = ACTIONS(2259), + [anon_sym_i8] = ACTIONS(2259), + [anon_sym_u16] = ACTIONS(2259), + [anon_sym_i16] = ACTIONS(2259), + [anon_sym_u32] = ACTIONS(2259), + [anon_sym_i32] = ACTIONS(2259), + [anon_sym_u64] = ACTIONS(2259), + [anon_sym_i64] = ACTIONS(2259), + [anon_sym_u128] = ACTIONS(2259), + [anon_sym_i128] = ACTIONS(2259), + [anon_sym_isize] = ACTIONS(2259), + [anon_sym_usize] = ACTIONS(2259), + [anon_sym_f32] = ACTIONS(2259), + [anon_sym_f64] = ACTIONS(2259), + [anon_sym_bool] = ACTIONS(2259), + [anon_sym_str] = ACTIONS(2259), + [anon_sym_char] = ACTIONS(2259), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [anon_sym_fn] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_impl] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_loop] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2259), + [anon_sym_mod] = ACTIONS(2259), + [anon_sym_pub] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_struct] = ACTIONS(2259), + [anon_sym_trait] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_union] = ACTIONS(2259), + [anon_sym_unsafe] = ACTIONS(2259), + [anon_sym_use] = ACTIONS(2259), + [anon_sym_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [529] = { + [sym_delim_token_tree] = STATE(525), + [sym__delim_tokens] = STATE(525), + [sym__non_delim_token] = STATE(525), + [sym__literal] = STATE(525), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2263), + [anon_sym_i8] = ACTIONS(2263), + [anon_sym_u16] = ACTIONS(2263), + [anon_sym_i16] = ACTIONS(2263), + [anon_sym_u32] = ACTIONS(2263), + [anon_sym_i32] = ACTIONS(2263), + [anon_sym_u64] = ACTIONS(2263), + [anon_sym_i64] = ACTIONS(2263), + [anon_sym_u128] = ACTIONS(2263), + [anon_sym_i128] = ACTIONS(2263), + [anon_sym_isize] = ACTIONS(2263), + [anon_sym_usize] = ACTIONS(2263), + [anon_sym_f32] = ACTIONS(2263), + [anon_sym_f64] = ACTIONS(2263), + [anon_sym_bool] = ACTIONS(2263), + [anon_sym_str] = ACTIONS(2263), + [anon_sym_char] = ACTIONS(2263), + [aux_sym__non_special_token_token1] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_as] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_default] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [anon_sym_fn] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_impl] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_loop] = ACTIONS(2263), + [anon_sym_match] = ACTIONS(2263), + [anon_sym_mod] = ACTIONS(2263), + [anon_sym_pub] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2263), + [anon_sym_trait] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_union] = ACTIONS(2263), + [anon_sym_unsafe] = ACTIONS(2263), + [anon_sym_use] = ACTIONS(2263), + [anon_sym_where] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [sym_mutable_specifier] = ACTIONS(2263), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_crate] = ACTIONS(2263), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [530] = { + [sym_delim_token_tree] = STATE(533), + [sym__delim_tokens] = STATE(533), + [sym__non_delim_token] = STATE(533), + [sym__literal] = STATE(533), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(533), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2225), + [anon_sym_DOLLAR] = ACTIONS(2271), + [anon_sym_u8] = ACTIONS(2269), + [anon_sym_i8] = ACTIONS(2269), + [anon_sym_u16] = ACTIONS(2269), + [anon_sym_i16] = ACTIONS(2269), + [anon_sym_u32] = ACTIONS(2269), + [anon_sym_i32] = ACTIONS(2269), + [anon_sym_u64] = ACTIONS(2269), + [anon_sym_i64] = ACTIONS(2269), + [anon_sym_u128] = ACTIONS(2269), + [anon_sym_i128] = ACTIONS(2269), + [anon_sym_isize] = ACTIONS(2269), + [anon_sym_usize] = ACTIONS(2269), + [anon_sym_f32] = ACTIONS(2269), + [anon_sym_f64] = ACTIONS(2269), + [anon_sym_bool] = ACTIONS(2269), + [anon_sym_str] = ACTIONS(2269), + [anon_sym_char] = ACTIONS(2269), + [aux_sym__non_special_token_token1] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_impl] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_loop] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_mod] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_where] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [sym_mutable_specifier] = ACTIONS(2269), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_crate] = ACTIONS(2269), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [531] = { + [sym_delim_token_tree] = STATE(513), + [sym__delim_tokens] = STATE(513), + [sym__non_delim_token] = STATE(513), + [sym__literal] = STATE(513), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2275), + [anon_sym_u8] = ACTIONS(2273), + [anon_sym_i8] = ACTIONS(2273), + [anon_sym_u16] = ACTIONS(2273), + [anon_sym_i16] = ACTIONS(2273), + [anon_sym_u32] = ACTIONS(2273), + [anon_sym_i32] = ACTIONS(2273), + [anon_sym_u64] = ACTIONS(2273), + [anon_sym_i64] = ACTIONS(2273), + [anon_sym_u128] = ACTIONS(2273), + [anon_sym_i128] = ACTIONS(2273), + [anon_sym_isize] = ACTIONS(2273), + [anon_sym_usize] = ACTIONS(2273), + [anon_sym_f32] = ACTIONS(2273), + [anon_sym_f64] = ACTIONS(2273), + [anon_sym_bool] = ACTIONS(2273), + [anon_sym_str] = ACTIONS(2273), + [anon_sym_char] = ACTIONS(2273), + [aux_sym__non_special_token_token1] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_fn] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_impl] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_loop] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_mod] = ACTIONS(2273), + [anon_sym_pub] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_trait] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_where] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [sym_mutable_specifier] = ACTIONS(2273), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_crate] = ACTIONS(2273), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [532] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [533] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [534] = { + [sym_delim_token_tree] = STATE(508), + [sym__delim_tokens] = STATE(508), + [sym__non_delim_token] = STATE(508), + [sym__literal] = STATE(508), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_u8] = ACTIONS(2277), + [anon_sym_i8] = ACTIONS(2277), + [anon_sym_u16] = ACTIONS(2277), + [anon_sym_i16] = ACTIONS(2277), + [anon_sym_u32] = ACTIONS(2277), + [anon_sym_i32] = ACTIONS(2277), + [anon_sym_u64] = ACTIONS(2277), + [anon_sym_i64] = ACTIONS(2277), + [anon_sym_u128] = ACTIONS(2277), + [anon_sym_i128] = ACTIONS(2277), + [anon_sym_isize] = ACTIONS(2277), + [anon_sym_usize] = ACTIONS(2277), + [anon_sym_f32] = ACTIONS(2277), + [anon_sym_f64] = ACTIONS(2277), + [anon_sym_bool] = ACTIONS(2277), + [anon_sym_str] = ACTIONS(2277), + [anon_sym_char] = ACTIONS(2277), + [aux_sym__non_special_token_token1] = ACTIONS(2277), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_as] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_default] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_fn] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_impl] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_mod] = ACTIONS(2277), + [anon_sym_pub] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_struct] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_union] = ACTIONS(2277), + [anon_sym_unsafe] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_where] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [sym_mutable_specifier] = ACTIONS(2277), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2277), + [sym_super] = ACTIONS(2277), + [sym_crate] = ACTIONS(2277), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [535] = { + [sym_delim_token_tree] = STATE(526), + [sym__delim_tokens] = STATE(526), + [sym__non_delim_token] = STATE(526), + [sym__literal] = STATE(526), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(526), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2283), + [anon_sym_u8] = ACTIONS(2281), + [anon_sym_i8] = ACTIONS(2281), + [anon_sym_u16] = ACTIONS(2281), + [anon_sym_i16] = ACTIONS(2281), + [anon_sym_u32] = ACTIONS(2281), + [anon_sym_i32] = ACTIONS(2281), + [anon_sym_u64] = ACTIONS(2281), + [anon_sym_i64] = ACTIONS(2281), + [anon_sym_u128] = ACTIONS(2281), + [anon_sym_i128] = ACTIONS(2281), + [anon_sym_isize] = ACTIONS(2281), + [anon_sym_usize] = ACTIONS(2281), + [anon_sym_f32] = ACTIONS(2281), + [anon_sym_f64] = ACTIONS(2281), + [anon_sym_bool] = ACTIONS(2281), + [anon_sym_str] = ACTIONS(2281), + [anon_sym_char] = ACTIONS(2281), + [aux_sym__non_special_token_token1] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_fn] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_impl] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_mod] = ACTIONS(2281), + [anon_sym_pub] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_struct] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_unsafe] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_where] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [sym_mutable_specifier] = ACTIONS(2281), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_crate] = ACTIONS(2281), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [536] = { + [sym_delim_token_tree] = STATE(527), + [sym__delim_tokens] = STATE(527), + [sym__non_delim_token] = STATE(527), + [sym__literal] = STATE(527), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(527), + [sym_identifier] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2287), + [anon_sym_u8] = ACTIONS(2285), + [anon_sym_i8] = ACTIONS(2285), + [anon_sym_u16] = ACTIONS(2285), + [anon_sym_i16] = ACTIONS(2285), + [anon_sym_u32] = ACTIONS(2285), + [anon_sym_i32] = ACTIONS(2285), + [anon_sym_u64] = ACTIONS(2285), + [anon_sym_i64] = ACTIONS(2285), + [anon_sym_u128] = ACTIONS(2285), + [anon_sym_i128] = ACTIONS(2285), + [anon_sym_isize] = ACTIONS(2285), + [anon_sym_usize] = ACTIONS(2285), + [anon_sym_f32] = ACTIONS(2285), + [anon_sym_f64] = ACTIONS(2285), + [anon_sym_bool] = ACTIONS(2285), + [anon_sym_str] = ACTIONS(2285), + [anon_sym_char] = ACTIONS(2285), + [aux_sym__non_special_token_token1] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_as] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_fn] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_impl] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_loop] = ACTIONS(2285), + [anon_sym_match] = ACTIONS(2285), + [anon_sym_mod] = ACTIONS(2285), + [anon_sym_pub] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_struct] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_union] = ACTIONS(2285), + [anon_sym_unsafe] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_where] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [sym_mutable_specifier] = ACTIONS(2285), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_crate] = ACTIONS(2285), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [537] = { + [sym_token_tree] = STATE(519), + [sym_token_repetition] = STATE(519), + [sym__literal] = STATE(519), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2289), + [anon_sym_i8] = ACTIONS(2289), + [anon_sym_u16] = ACTIONS(2289), + [anon_sym_i16] = ACTIONS(2289), + [anon_sym_u32] = ACTIONS(2289), + [anon_sym_i32] = ACTIONS(2289), + [anon_sym_u64] = ACTIONS(2289), + [anon_sym_i64] = ACTIONS(2289), + [anon_sym_u128] = ACTIONS(2289), + [anon_sym_i128] = ACTIONS(2289), + [anon_sym_isize] = ACTIONS(2289), + [anon_sym_usize] = ACTIONS(2289), + [anon_sym_f32] = ACTIONS(2289), + [anon_sym_f64] = ACTIONS(2289), + [anon_sym_bool] = ACTIONS(2289), + [anon_sym_str] = ACTIONS(2289), + [anon_sym_char] = ACTIONS(2289), + [aux_sym__non_special_token_token1] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_fn] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_impl] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_loop] = ACTIONS(2289), + [anon_sym_match] = ACTIONS(2289), + [anon_sym_mod] = ACTIONS(2289), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_struct] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(2289), + [anon_sym_unsafe] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_where] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [sym_mutable_specifier] = ACTIONS(2289), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_crate] = ACTIONS(2289), + [sym_metavariable] = ACTIONS(2291), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [538] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [539] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [540] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [541] = { + [sym_delim_token_tree] = STATE(509), + [sym__delim_tokens] = STATE(509), + [sym__non_delim_token] = STATE(509), + [sym__literal] = STATE(509), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [anon_sym_u8] = ACTIONS(2297), + [anon_sym_i8] = ACTIONS(2297), + [anon_sym_u16] = ACTIONS(2297), + [anon_sym_i16] = ACTIONS(2297), + [anon_sym_u32] = ACTIONS(2297), + [anon_sym_i32] = ACTIONS(2297), + [anon_sym_u64] = ACTIONS(2297), + [anon_sym_i64] = ACTIONS(2297), + [anon_sym_u128] = ACTIONS(2297), + [anon_sym_i128] = ACTIONS(2297), + [anon_sym_isize] = ACTIONS(2297), + [anon_sym_usize] = ACTIONS(2297), + [anon_sym_f32] = ACTIONS(2297), + [anon_sym_f64] = ACTIONS(2297), + [anon_sym_bool] = ACTIONS(2297), + [anon_sym_str] = ACTIONS(2297), + [anon_sym_char] = ACTIONS(2297), + [aux_sym__non_special_token_token1] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_impl] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_mod] = ACTIONS(2297), + [anon_sym_pub] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_where] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [sym_mutable_specifier] = ACTIONS(2297), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2297), + [sym_super] = ACTIONS(2297), + [sym_crate] = ACTIONS(2297), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [542] = { + [sym_token_tree] = STATE(518), + [sym_token_repetition] = STATE(518), + [sym__literal] = STATE(518), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(518), + [sym_identifier] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2303), + [anon_sym_i8] = ACTIONS(2303), + [anon_sym_u16] = ACTIONS(2303), + [anon_sym_i16] = ACTIONS(2303), + [anon_sym_u32] = ACTIONS(2303), + [anon_sym_i32] = ACTIONS(2303), + [anon_sym_u64] = ACTIONS(2303), + [anon_sym_i64] = ACTIONS(2303), + [anon_sym_u128] = ACTIONS(2303), + [anon_sym_i128] = ACTIONS(2303), + [anon_sym_isize] = ACTIONS(2303), + [anon_sym_usize] = ACTIONS(2303), + [anon_sym_f32] = ACTIONS(2303), + [anon_sym_f64] = ACTIONS(2303), + [anon_sym_bool] = ACTIONS(2303), + [anon_sym_str] = ACTIONS(2303), + [anon_sym_char] = ACTIONS(2303), + [aux_sym__non_special_token_token1] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_async] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_fn] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_impl] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_mod] = ACTIONS(2303), + [anon_sym_pub] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_trait] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_where] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [sym_mutable_specifier] = ACTIONS(2303), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2303), + [sym_super] = ACTIONS(2303), + [sym_crate] = ACTIONS(2303), + [sym_metavariable] = ACTIONS(2305), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [543] = { + [sym_delim_token_tree] = STATE(515), + [sym__delim_tokens] = STATE(515), + [sym__non_delim_token] = STATE(515), + [sym__literal] = STATE(515), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(515), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2309), + [anon_sym_u8] = ACTIONS(2307), + [anon_sym_i8] = ACTIONS(2307), + [anon_sym_u16] = ACTIONS(2307), + [anon_sym_i16] = ACTIONS(2307), + [anon_sym_u32] = ACTIONS(2307), + [anon_sym_i32] = ACTIONS(2307), + [anon_sym_u64] = ACTIONS(2307), + [anon_sym_i64] = ACTIONS(2307), + [anon_sym_u128] = ACTIONS(2307), + [anon_sym_i128] = ACTIONS(2307), + [anon_sym_isize] = ACTIONS(2307), + [anon_sym_usize] = ACTIONS(2307), + [anon_sym_f32] = ACTIONS(2307), + [anon_sym_f64] = ACTIONS(2307), + [anon_sym_bool] = ACTIONS(2307), + [anon_sym_str] = ACTIONS(2307), + [anon_sym_char] = ACTIONS(2307), + [aux_sym__non_special_token_token1] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_fn] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_impl] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_loop] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_mod] = ACTIONS(2307), + [anon_sym_pub] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_trait] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_unsafe] = ACTIONS(2307), + [anon_sym_use] = ACTIONS(2307), + [anon_sym_where] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [sym_mutable_specifier] = ACTIONS(2307), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_crate] = ACTIONS(2307), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [544] = { + [sym_delim_token_tree] = STATE(516), + [sym__delim_tokens] = STATE(516), + [sym__non_delim_token] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(2311), + [anon_sym_i8] = ACTIONS(2311), + [anon_sym_u16] = ACTIONS(2311), + [anon_sym_i16] = ACTIONS(2311), + [anon_sym_u32] = ACTIONS(2311), + [anon_sym_i32] = ACTIONS(2311), + [anon_sym_u64] = ACTIONS(2311), + [anon_sym_i64] = ACTIONS(2311), + [anon_sym_u128] = ACTIONS(2311), + [anon_sym_i128] = ACTIONS(2311), + [anon_sym_isize] = ACTIONS(2311), + [anon_sym_usize] = ACTIONS(2311), + [anon_sym_f32] = ACTIONS(2311), + [anon_sym_f64] = ACTIONS(2311), + [anon_sym_bool] = ACTIONS(2311), + [anon_sym_str] = ACTIONS(2311), + [anon_sym_char] = ACTIONS(2311), + [aux_sym__non_special_token_token1] = ACTIONS(2311), + [anon_sym_SQUOTE] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_async] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_default] = ACTIONS(2311), + [anon_sym_enum] = ACTIONS(2311), + [anon_sym_fn] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_impl] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_mod] = ACTIONS(2311), + [anon_sym_pub] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_static] = ACTIONS(2311), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_trait] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2311), + [anon_sym_union] = ACTIONS(2311), + [anon_sym_unsafe] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_where] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [sym_mutable_specifier] = ACTIONS(2311), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2311), + [sym_super] = ACTIONS(2311), + [sym_crate] = ACTIONS(2311), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [545] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [546] = { + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(685), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), [anon_sym_u128] = ACTIONS(892), [anon_sym_i128] = ACTIONS(892), [anon_sym_isize] = ACTIONS(892), @@ -63408,18 +64016,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(2325), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), @@ -63428,39 +64037,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [540] = { - [sym_attribute_item] = STATE(543), - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym_visibility_modifier] = STATE(638), - [sym__type] = STATE(1950), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(543), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [547] = { + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2448), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_pattern] = STATE(2448), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [548] = { + [sym_attribute_item] = STATE(629), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2448), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_pattern] = STATE(2449), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [549] = { + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2329), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63480,17 +64235,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -63500,39 +64255,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [541] = { - [sym_attribute_item] = STATE(543), - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym_visibility_modifier] = STATE(638), - [sym__type] = STATE(1950), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(543), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [550] = { + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2265), + [anon_sym_RPAREN] = ACTIONS(2331), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63552,17 +64307,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -63572,109 +64327,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [542] = { - [sym_identifier] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2269), - [anon_sym_RBRACK] = ACTIONS(2269), - [anon_sym_COLON] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2267), - [anon_sym_i8] = ACTIONS(2267), - [anon_sym_u16] = ACTIONS(2267), - [anon_sym_i16] = ACTIONS(2267), - [anon_sym_u32] = ACTIONS(2267), - [anon_sym_i32] = ACTIONS(2267), - [anon_sym_u64] = ACTIONS(2267), - [anon_sym_i64] = ACTIONS(2267), - [anon_sym_u128] = ACTIONS(2267), - [anon_sym_i128] = ACTIONS(2267), - [anon_sym_isize] = ACTIONS(2267), - [anon_sym_usize] = ACTIONS(2267), - [anon_sym_f32] = ACTIONS(2267), - [anon_sym_f64] = ACTIONS(2267), - [anon_sym_bool] = ACTIONS(2267), - [anon_sym_str] = ACTIONS(2267), - [anon_sym_char] = ACTIONS(2267), - [aux_sym__non_special_token_token1] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_default] = ACTIONS(2267), - [anon_sym_enum] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_impl] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_mod] = ACTIONS(2267), - [anon_sym_pub] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_trait] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_union] = ACTIONS(2267), - [anon_sym_unsafe] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_where] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [sym_mutable_specifier] = ACTIONS(2267), - [sym_integer_literal] = ACTIONS(2269), - [aux_sym_string_literal_token1] = ACTIONS(2269), - [sym_char_literal] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2267), - [sym_super] = ACTIONS(2267), - [sym_crate] = ACTIONS(2267), - [sym_metavariable] = ACTIONS(2269), - [sym_raw_string_literal] = ACTIONS(2269), - [sym_float_literal] = ACTIONS(2269), - [sym_block_comment] = ACTIONS(3), - }, - [543] = { - [sym_attribute_item] = STATE(1058), - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym_visibility_modifier] = STATE(688), - [sym__type] = STATE(1890), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [551] = { + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2333), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63694,17 +64379,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -63714,38 +64399,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [544] = { - [sym_attribute_item] = STATE(543), - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym_visibility_modifier] = STATE(638), - [sym__type] = STATE(1950), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(543), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [552] = { + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2335), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63765,17 +64451,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -63785,38 +64471,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [545] = { - [sym_attribute_item] = STATE(1058), - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym_visibility_modifier] = STATE(642), - [sym__type] = STATE(1847), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [553] = { + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2337), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63836,17 +64523,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -63856,528 +64543,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [546] = { - [sym_identifier] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_RBRACK] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2273), - [anon_sym_u8] = ACTIONS(2273), - [anon_sym_i8] = ACTIONS(2273), - [anon_sym_u16] = ACTIONS(2273), - [anon_sym_i16] = ACTIONS(2273), - [anon_sym_u32] = ACTIONS(2273), - [anon_sym_i32] = ACTIONS(2273), - [anon_sym_u64] = ACTIONS(2273), - [anon_sym_i64] = ACTIONS(2273), - [anon_sym_u128] = ACTIONS(2273), - [anon_sym_i128] = ACTIONS(2273), - [anon_sym_isize] = ACTIONS(2273), - [anon_sym_usize] = ACTIONS(2273), - [anon_sym_f32] = ACTIONS(2273), - [anon_sym_f64] = ACTIONS(2273), - [anon_sym_bool] = ACTIONS(2273), - [anon_sym_str] = ACTIONS(2273), - [anon_sym_char] = ACTIONS(2273), - [aux_sym__non_special_token_token1] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_default] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_impl] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_mod] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_trait] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_where] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [sym_mutable_specifier] = ACTIONS(2273), - [sym_integer_literal] = ACTIONS(2275), - [aux_sym_string_literal_token1] = ACTIONS(2275), - [sym_char_literal] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2273), - [sym_super] = ACTIONS(2273), - [sym_crate] = ACTIONS(2273), - [sym_metavariable] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2275), - [sym_float_literal] = ACTIONS(2275), - [sym_block_comment] = ACTIONS(3), - }, - [547] = { - [sym_identifier] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_RBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_u8] = ACTIONS(2277), - [anon_sym_i8] = ACTIONS(2277), - [anon_sym_u16] = ACTIONS(2277), - [anon_sym_i16] = ACTIONS(2277), - [anon_sym_u32] = ACTIONS(2277), - [anon_sym_i32] = ACTIONS(2277), - [anon_sym_u64] = ACTIONS(2277), - [anon_sym_i64] = ACTIONS(2277), - [anon_sym_u128] = ACTIONS(2277), - [anon_sym_i128] = ACTIONS(2277), - [anon_sym_isize] = ACTIONS(2277), - [anon_sym_usize] = ACTIONS(2277), - [anon_sym_f32] = ACTIONS(2277), - [anon_sym_f64] = ACTIONS(2277), - [anon_sym_bool] = ACTIONS(2277), - [anon_sym_str] = ACTIONS(2277), - [anon_sym_char] = ACTIONS(2277), - [aux_sym__non_special_token_token1] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_fn] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_impl] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_mod] = ACTIONS(2277), - [anon_sym_pub] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_trait] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_unsafe] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_where] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [sym_mutable_specifier] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2279), - [aux_sym_string_literal_token1] = ACTIONS(2279), - [sym_char_literal] = ACTIONS(2279), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2277), - [sym_super] = ACTIONS(2277), - [sym_crate] = ACTIONS(2277), - [sym_metavariable] = ACTIONS(2279), - [sym_raw_string_literal] = ACTIONS(2279), - [sym_float_literal] = ACTIONS(2279), - [sym_block_comment] = ACTIONS(3), - }, - [548] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1792), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(810), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_ref] = ACTIONS(716), + [554] = { + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(2327), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [549] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_COMMA] = ACTIONS(840), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [550] = { - [sym_identifier] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(602), - [anon_sym_RPAREN] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_RBRACE] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_RBRACK] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_u8] = ACTIONS(604), - [anon_sym_i8] = ACTIONS(604), - [anon_sym_u16] = ACTIONS(604), - [anon_sym_i16] = ACTIONS(604), - [anon_sym_u32] = ACTIONS(604), - [anon_sym_i32] = ACTIONS(604), - [anon_sym_u64] = ACTIONS(604), - [anon_sym_i64] = ACTIONS(604), - [anon_sym_u128] = ACTIONS(604), - [anon_sym_i128] = ACTIONS(604), - [anon_sym_isize] = ACTIONS(604), - [anon_sym_usize] = ACTIONS(604), - [anon_sym_f32] = ACTIONS(604), - [anon_sym_f64] = ACTIONS(604), - [anon_sym_bool] = ACTIONS(604), - [anon_sym_str] = ACTIONS(604), - [anon_sym_char] = ACTIONS(604), - [aux_sym__non_special_token_token1] = ACTIONS(604), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_as] = ACTIONS(604), - [anon_sym_async] = ACTIONS(604), - [anon_sym_await] = ACTIONS(604), - [anon_sym_break] = ACTIONS(604), - [anon_sym_const] = ACTIONS(604), - [anon_sym_continue] = ACTIONS(604), - [anon_sym_default] = ACTIONS(604), - [anon_sym_enum] = ACTIONS(604), - [anon_sym_fn] = ACTIONS(604), - [anon_sym_for] = ACTIONS(604), - [anon_sym_if] = ACTIONS(604), - [anon_sym_impl] = ACTIONS(604), - [anon_sym_let] = ACTIONS(604), - [anon_sym_loop] = ACTIONS(604), - [anon_sym_match] = ACTIONS(604), - [anon_sym_mod] = ACTIONS(604), - [anon_sym_pub] = ACTIONS(604), - [anon_sym_return] = ACTIONS(604), - [anon_sym_static] = ACTIONS(604), - [anon_sym_struct] = ACTIONS(604), - [anon_sym_trait] = ACTIONS(604), - [anon_sym_type] = ACTIONS(604), - [anon_sym_union] = ACTIONS(604), - [anon_sym_unsafe] = ACTIONS(604), - [anon_sym_use] = ACTIONS(604), - [anon_sym_where] = ACTIONS(604), - [anon_sym_while] = ACTIONS(604), - [sym_mutable_specifier] = ACTIONS(604), - [sym_integer_literal] = ACTIONS(602), - [aux_sym_string_literal_token1] = ACTIONS(602), - [sym_char_literal] = ACTIONS(602), - [anon_sym_true] = ACTIONS(604), - [anon_sym_false] = ACTIONS(604), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(604), - [sym_super] = ACTIONS(604), - [sym_crate] = ACTIONS(604), - [sym_metavariable] = ACTIONS(602), - [sym_raw_string_literal] = ACTIONS(602), - [sym_float_literal] = ACTIONS(602), - [sym_block_comment] = ACTIONS(3), - }, - [551] = { - [sym_parameter] = STATE(1958), - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1783), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(2289), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(2291), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2293), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [552] = { - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_RBRACK] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_u8] = ACTIONS(2295), - [anon_sym_i8] = ACTIONS(2295), - [anon_sym_u16] = ACTIONS(2295), - [anon_sym_i16] = ACTIONS(2295), - [anon_sym_u32] = ACTIONS(2295), - [anon_sym_i32] = ACTIONS(2295), - [anon_sym_u64] = ACTIONS(2295), - [anon_sym_i64] = ACTIONS(2295), - [anon_sym_u128] = ACTIONS(2295), - [anon_sym_i128] = ACTIONS(2295), - [anon_sym_isize] = ACTIONS(2295), - [anon_sym_usize] = ACTIONS(2295), - [anon_sym_f32] = ACTIONS(2295), - [anon_sym_f64] = ACTIONS(2295), - [anon_sym_bool] = ACTIONS(2295), - [anon_sym_str] = ACTIONS(2295), - [anon_sym_char] = ACTIONS(2295), - [aux_sym__non_special_token_token1] = ACTIONS(2295), - [anon_sym_SQUOTE] = ACTIONS(2295), - [anon_sym_as] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_default] = ACTIONS(2295), - [anon_sym_enum] = ACTIONS(2295), - [anon_sym_fn] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_impl] = ACTIONS(2295), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_loop] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_mod] = ACTIONS(2295), - [anon_sym_pub] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_static] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2295), - [anon_sym_trait] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2295), - [anon_sym_union] = ACTIONS(2295), - [anon_sym_unsafe] = ACTIONS(2295), - [anon_sym_use] = ACTIONS(2295), - [anon_sym_where] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [sym_mutable_specifier] = ACTIONS(2295), - [sym_integer_literal] = ACTIONS(2297), - [aux_sym_string_literal_token1] = ACTIONS(2297), - [sym_char_literal] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2295), - [anon_sym_false] = ACTIONS(2295), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2295), - [sym_super] = ACTIONS(2295), - [sym_crate] = ACTIONS(2295), - [sym_metavariable] = ACTIONS(2297), - [sym_raw_string_literal] = ACTIONS(2297), - [sym_float_literal] = ACTIONS(2297), - [sym_block_comment] = ACTIONS(3), - }, - [553] = { - [sym_function_modifiers] = STATE(2404), - [sym_const_parameter] = STATE(2111), - [sym_constrained_type_parameter] = STATE(1806), - [sym_optional_type_parameter] = STATE(2111), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1955), - [sym_bracketed_type] = STATE(2347), - [sym_qualified_type] = STATE(2328), - [sym_lifetime] = STATE(1671), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2299), + [555] = { + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -64398,15 +64666,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -64416,711 +64686,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(2303), - [sym_block_comment] = ACTIONS(3), - }, - [554] = { - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_RPAREN] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_RBRACK] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_u8] = ACTIONS(2305), - [anon_sym_i8] = ACTIONS(2305), - [anon_sym_u16] = ACTIONS(2305), - [anon_sym_i16] = ACTIONS(2305), - [anon_sym_u32] = ACTIONS(2305), - [anon_sym_i32] = ACTIONS(2305), - [anon_sym_u64] = ACTIONS(2305), - [anon_sym_i64] = ACTIONS(2305), - [anon_sym_u128] = ACTIONS(2305), - [anon_sym_i128] = ACTIONS(2305), - [anon_sym_isize] = ACTIONS(2305), - [anon_sym_usize] = ACTIONS(2305), - [anon_sym_f32] = ACTIONS(2305), - [anon_sym_f64] = ACTIONS(2305), - [anon_sym_bool] = ACTIONS(2305), - [anon_sym_str] = ACTIONS(2305), - [anon_sym_char] = ACTIONS(2305), - [aux_sym__non_special_token_token1] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_fn] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_impl] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_mod] = ACTIONS(2305), - [anon_sym_pub] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_trait] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_union] = ACTIONS(2305), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_where] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [sym_mutable_specifier] = ACTIONS(2305), - [sym_integer_literal] = ACTIONS(2307), - [aux_sym_string_literal_token1] = ACTIONS(2307), - [sym_char_literal] = ACTIONS(2307), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2305), - [sym_super] = ACTIONS(2305), - [sym_crate] = ACTIONS(2305), - [sym_metavariable] = ACTIONS(2307), - [sym_raw_string_literal] = ACTIONS(2307), - [sym_float_literal] = ACTIONS(2307), - [sym_block_comment] = ACTIONS(3), - }, - [555] = { - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_RPAREN] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_RBRACK] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_u8] = ACTIONS(2309), - [anon_sym_i8] = ACTIONS(2309), - [anon_sym_u16] = ACTIONS(2309), - [anon_sym_i16] = ACTIONS(2309), - [anon_sym_u32] = ACTIONS(2309), - [anon_sym_i32] = ACTIONS(2309), - [anon_sym_u64] = ACTIONS(2309), - [anon_sym_i64] = ACTIONS(2309), - [anon_sym_u128] = ACTIONS(2309), - [anon_sym_i128] = ACTIONS(2309), - [anon_sym_isize] = ACTIONS(2309), - [anon_sym_usize] = ACTIONS(2309), - [anon_sym_f32] = ACTIONS(2309), - [anon_sym_f64] = ACTIONS(2309), - [anon_sym_bool] = ACTIONS(2309), - [anon_sym_str] = ACTIONS(2309), - [anon_sym_char] = ACTIONS(2309), - [aux_sym__non_special_token_token1] = ACTIONS(2309), - [anon_sym_SQUOTE] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_await] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_default] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_impl] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_loop] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_mod] = ACTIONS(2309), - [anon_sym_pub] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_static] = ACTIONS(2309), - [anon_sym_struct] = ACTIONS(2309), - [anon_sym_trait] = ACTIONS(2309), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_union] = ACTIONS(2309), - [anon_sym_unsafe] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_where] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [sym_mutable_specifier] = ACTIONS(2309), - [sym_integer_literal] = ACTIONS(2311), - [aux_sym_string_literal_token1] = ACTIONS(2311), - [sym_char_literal] = ACTIONS(2311), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2309), - [sym_super] = ACTIONS(2309), - [sym_crate] = ACTIONS(2309), - [sym_metavariable] = ACTIONS(2311), - [sym_raw_string_literal] = ACTIONS(2311), - [sym_float_literal] = ACTIONS(2311), + [sym_crate] = ACTIONS(2327), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [556] = { - [sym_identifier] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_RPAREN] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_RBRACK] = ACTIONS(2315), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_u8] = ACTIONS(2313), - [anon_sym_i8] = ACTIONS(2313), - [anon_sym_u16] = ACTIONS(2313), - [anon_sym_i16] = ACTIONS(2313), - [anon_sym_u32] = ACTIONS(2313), - [anon_sym_i32] = ACTIONS(2313), - [anon_sym_u64] = ACTIONS(2313), - [anon_sym_i64] = ACTIONS(2313), - [anon_sym_u128] = ACTIONS(2313), - [anon_sym_i128] = ACTIONS(2313), - [anon_sym_isize] = ACTIONS(2313), - [anon_sym_usize] = ACTIONS(2313), - [anon_sym_f32] = ACTIONS(2313), - [anon_sym_f64] = ACTIONS(2313), - [anon_sym_bool] = ACTIONS(2313), - [anon_sym_str] = ACTIONS(2313), - [anon_sym_char] = ACTIONS(2313), - [aux_sym__non_special_token_token1] = ACTIONS(2313), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_default] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [anon_sym_fn] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_mod] = ACTIONS(2313), - [anon_sym_pub] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2313), - [anon_sym_trait] = ACTIONS(2313), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_union] = ACTIONS(2313), - [anon_sym_unsafe] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_where] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [sym_mutable_specifier] = ACTIONS(2313), - [sym_integer_literal] = ACTIONS(2315), - [aux_sym_string_literal_token1] = ACTIONS(2315), - [sym_char_literal] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2313), - [sym_super] = ACTIONS(2313), - [sym_crate] = ACTIONS(2313), - [sym_metavariable] = ACTIONS(2315), - [sym_raw_string_literal] = ACTIONS(2315), - [sym_float_literal] = ACTIONS(2315), - [sym_block_comment] = ACTIONS(3), - }, - [557] = { - [sym_identifier] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_RBRACK] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [aux_sym__non_special_token_token1] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_as] = ACTIONS(588), - [anon_sym_async] = ACTIONS(588), - [anon_sym_await] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_fn] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_impl] = ACTIONS(588), - [anon_sym_let] = ACTIONS(588), - [anon_sym_loop] = ACTIONS(588), - [anon_sym_match] = ACTIONS(588), - [anon_sym_mod] = ACTIONS(588), - [anon_sym_pub] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_struct] = ACTIONS(588), - [anon_sym_trait] = ACTIONS(588), - [anon_sym_type] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_unsafe] = ACTIONS(588), - [anon_sym_use] = ACTIONS(588), - [anon_sym_where] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [sym_mutable_specifier] = ACTIONS(588), - [sym_integer_literal] = ACTIONS(586), - [aux_sym_string_literal_token1] = ACTIONS(586), - [sym_char_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(588), - [anon_sym_false] = ACTIONS(588), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(586), - [sym_raw_string_literal] = ACTIONS(586), - [sym_float_literal] = ACTIONS(586), - [sym_block_comment] = ACTIONS(3), - }, - [558] = { - [sym_identifier] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_RPAREN] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(2319), - [anon_sym_RBRACK] = ACTIONS(2319), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_u8] = ACTIONS(2317), - [anon_sym_i8] = ACTIONS(2317), - [anon_sym_u16] = ACTIONS(2317), - [anon_sym_i16] = ACTIONS(2317), - [anon_sym_u32] = ACTIONS(2317), - [anon_sym_i32] = ACTIONS(2317), - [anon_sym_u64] = ACTIONS(2317), - [anon_sym_i64] = ACTIONS(2317), - [anon_sym_u128] = ACTIONS(2317), - [anon_sym_i128] = ACTIONS(2317), - [anon_sym_isize] = ACTIONS(2317), - [anon_sym_usize] = ACTIONS(2317), - [anon_sym_f32] = ACTIONS(2317), - [anon_sym_f64] = ACTIONS(2317), - [anon_sym_bool] = ACTIONS(2317), - [anon_sym_str] = ACTIONS(2317), - [anon_sym_char] = ACTIONS(2317), - [aux_sym__non_special_token_token1] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_as] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [anon_sym_fn] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_impl] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2317), - [anon_sym_pub] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2317), - [anon_sym_struct] = ACTIONS(2317), - [anon_sym_trait] = ACTIONS(2317), - [anon_sym_type] = ACTIONS(2317), - [anon_sym_union] = ACTIONS(2317), - [anon_sym_unsafe] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_where] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [sym_mutable_specifier] = ACTIONS(2317), - [sym_integer_literal] = ACTIONS(2319), - [aux_sym_string_literal_token1] = ACTIONS(2319), - [sym_char_literal] = ACTIONS(2319), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2317), - [sym_super] = ACTIONS(2317), - [sym_crate] = ACTIONS(2317), - [sym_metavariable] = ACTIONS(2319), - [sym_raw_string_literal] = ACTIONS(2319), - [sym_float_literal] = ACTIONS(2319), - [sym_block_comment] = ACTIONS(3), - }, - [559] = { - [sym_identifier] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_RPAREN] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_RBRACK] = ACTIONS(2323), - [anon_sym_DOLLAR] = ACTIONS(2321), - [anon_sym_u8] = ACTIONS(2321), - [anon_sym_i8] = ACTIONS(2321), - [anon_sym_u16] = ACTIONS(2321), - [anon_sym_i16] = ACTIONS(2321), - [anon_sym_u32] = ACTIONS(2321), - [anon_sym_i32] = ACTIONS(2321), - [anon_sym_u64] = ACTIONS(2321), - [anon_sym_i64] = ACTIONS(2321), - [anon_sym_u128] = ACTIONS(2321), - [anon_sym_i128] = ACTIONS(2321), - [anon_sym_isize] = ACTIONS(2321), - [anon_sym_usize] = ACTIONS(2321), - [anon_sym_f32] = ACTIONS(2321), - [anon_sym_f64] = ACTIONS(2321), - [anon_sym_bool] = ACTIONS(2321), - [anon_sym_str] = ACTIONS(2321), - [anon_sym_char] = ACTIONS(2321), - [aux_sym__non_special_token_token1] = ACTIONS(2321), - [anon_sym_SQUOTE] = ACTIONS(2321), - [anon_sym_as] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_default] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_impl] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_loop] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_mod] = ACTIONS(2321), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2321), - [anon_sym_trait] = ACTIONS(2321), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(2321), - [anon_sym_unsafe] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_where] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [sym_mutable_specifier] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2323), - [aux_sym_string_literal_token1] = ACTIONS(2323), - [sym_char_literal] = ACTIONS(2323), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2321), - [sym_super] = ACTIONS(2321), - [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(2323), - [sym_raw_string_literal] = ACTIONS(2323), - [sym_float_literal] = ACTIONS(2323), - [sym_block_comment] = ACTIONS(3), - }, - [560] = { - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_RBRACK] = ACTIONS(2327), - [anon_sym_DOLLAR] = ACTIONS(2325), - [anon_sym_u8] = ACTIONS(2325), - [anon_sym_i8] = ACTIONS(2325), - [anon_sym_u16] = ACTIONS(2325), - [anon_sym_i16] = ACTIONS(2325), - [anon_sym_u32] = ACTIONS(2325), - [anon_sym_i32] = ACTIONS(2325), - [anon_sym_u64] = ACTIONS(2325), - [anon_sym_i64] = ACTIONS(2325), - [anon_sym_u128] = ACTIONS(2325), - [anon_sym_i128] = ACTIONS(2325), - [anon_sym_isize] = ACTIONS(2325), - [anon_sym_usize] = ACTIONS(2325), - [anon_sym_f32] = ACTIONS(2325), - [anon_sym_f64] = ACTIONS(2325), - [anon_sym_bool] = ACTIONS(2325), - [anon_sym_str] = ACTIONS(2325), - [anon_sym_char] = ACTIONS(2325), - [aux_sym__non_special_token_token1] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_await] = ACTIONS(2325), - [anon_sym_break] = ACTIONS(2325), - [anon_sym_const] = ACTIONS(2325), - [anon_sym_continue] = ACTIONS(2325), - [anon_sym_default] = ACTIONS(2325), - [anon_sym_enum] = ACTIONS(2325), - [anon_sym_fn] = ACTIONS(2325), - [anon_sym_for] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(2325), - [anon_sym_impl] = ACTIONS(2325), - [anon_sym_let] = ACTIONS(2325), - [anon_sym_loop] = ACTIONS(2325), - [anon_sym_match] = ACTIONS(2325), - [anon_sym_mod] = ACTIONS(2325), - [anon_sym_pub] = ACTIONS(2325), - [anon_sym_return] = ACTIONS(2325), - [anon_sym_static] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(2325), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2325), - [anon_sym_union] = ACTIONS(2325), - [anon_sym_unsafe] = ACTIONS(2325), - [anon_sym_use] = ACTIONS(2325), - [anon_sym_where] = ACTIONS(2325), - [anon_sym_while] = ACTIONS(2325), - [sym_mutable_specifier] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2327), - [aux_sym_string_literal_token1] = ACTIONS(2327), - [sym_char_literal] = ACTIONS(2327), - [anon_sym_true] = ACTIONS(2325), - [anon_sym_false] = ACTIONS(2325), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2325), - [sym_super] = ACTIONS(2325), - [sym_crate] = ACTIONS(2325), - [sym_metavariable] = ACTIONS(2327), - [sym_raw_string_literal] = ACTIONS(2327), - [sym_float_literal] = ACTIONS(2327), - [sym_block_comment] = ACTIONS(3), - }, - [561] = { - [sym_identifier] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_LBRACE] = ACTIONS(2331), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(2331), - [anon_sym_RBRACK] = ACTIONS(2331), - [anon_sym_DOLLAR] = ACTIONS(2329), - [anon_sym_u8] = ACTIONS(2329), - [anon_sym_i8] = ACTIONS(2329), - [anon_sym_u16] = ACTIONS(2329), - [anon_sym_i16] = ACTIONS(2329), - [anon_sym_u32] = ACTIONS(2329), - [anon_sym_i32] = ACTIONS(2329), - [anon_sym_u64] = ACTIONS(2329), - [anon_sym_i64] = ACTIONS(2329), - [anon_sym_u128] = ACTIONS(2329), - [anon_sym_i128] = ACTIONS(2329), - [anon_sym_isize] = ACTIONS(2329), - [anon_sym_usize] = ACTIONS(2329), - [anon_sym_f32] = ACTIONS(2329), - [anon_sym_f64] = ACTIONS(2329), - [anon_sym_bool] = ACTIONS(2329), - [anon_sym_str] = ACTIONS(2329), - [anon_sym_char] = ACTIONS(2329), - [aux_sym__non_special_token_token1] = ACTIONS(2329), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_as] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(2329), - [anon_sym_await] = ACTIONS(2329), - [anon_sym_break] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_fn] = ACTIONS(2329), - [anon_sym_for] = ACTIONS(2329), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_impl] = ACTIONS(2329), - [anon_sym_let] = ACTIONS(2329), - [anon_sym_loop] = ACTIONS(2329), - [anon_sym_match] = ACTIONS(2329), - [anon_sym_mod] = ACTIONS(2329), - [anon_sym_pub] = ACTIONS(2329), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2329), - [anon_sym_trait] = ACTIONS(2329), - [anon_sym_type] = ACTIONS(2329), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_unsafe] = ACTIONS(2329), - [anon_sym_use] = ACTIONS(2329), - [anon_sym_where] = ACTIONS(2329), - [anon_sym_while] = ACTIONS(2329), - [sym_mutable_specifier] = ACTIONS(2329), - [sym_integer_literal] = ACTIONS(2331), - [aux_sym_string_literal_token1] = ACTIONS(2331), - [sym_char_literal] = ACTIONS(2331), - [anon_sym_true] = ACTIONS(2329), - [anon_sym_false] = ACTIONS(2329), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2329), - [sym_super] = ACTIONS(2329), - [sym_crate] = ACTIONS(2329), - [sym_metavariable] = ACTIONS(2331), - [sym_raw_string_literal] = ACTIONS(2331), - [sym_float_literal] = ACTIONS(2331), - [sym_block_comment] = ACTIONS(3), - }, - [562] = { - [sym_identifier] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_RPAREN] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_RBRACK] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2333), - [anon_sym_u8] = ACTIONS(2333), - [anon_sym_i8] = ACTIONS(2333), - [anon_sym_u16] = ACTIONS(2333), - [anon_sym_i16] = ACTIONS(2333), - [anon_sym_u32] = ACTIONS(2333), - [anon_sym_i32] = ACTIONS(2333), - [anon_sym_u64] = ACTIONS(2333), - [anon_sym_i64] = ACTIONS(2333), - [anon_sym_u128] = ACTIONS(2333), - [anon_sym_i128] = ACTIONS(2333), - [anon_sym_isize] = ACTIONS(2333), - [anon_sym_usize] = ACTIONS(2333), - [anon_sym_f32] = ACTIONS(2333), - [anon_sym_f64] = ACTIONS(2333), - [anon_sym_bool] = ACTIONS(2333), - [anon_sym_str] = ACTIONS(2333), - [anon_sym_char] = ACTIONS(2333), - [aux_sym__non_special_token_token1] = ACTIONS(2333), - [anon_sym_SQUOTE] = ACTIONS(2333), - [anon_sym_as] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_default] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), - [anon_sym_fn] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_impl] = ACTIONS(2333), - [anon_sym_let] = ACTIONS(2333), - [anon_sym_loop] = ACTIONS(2333), - [anon_sym_match] = ACTIONS(2333), - [anon_sym_mod] = ACTIONS(2333), - [anon_sym_pub] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_static] = ACTIONS(2333), - [anon_sym_struct] = ACTIONS(2333), - [anon_sym_trait] = ACTIONS(2333), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_union] = ACTIONS(2333), - [anon_sym_unsafe] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_where] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [sym_mutable_specifier] = ACTIONS(2333), - [sym_integer_literal] = ACTIONS(2335), - [aux_sym_string_literal_token1] = ACTIONS(2335), - [sym_char_literal] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2333), - [anon_sym_false] = ACTIONS(2333), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2333), - [sym_super] = ACTIONS(2333), - [sym_crate] = ACTIONS(2333), - [sym_metavariable] = ACTIONS(2335), - [sym_raw_string_literal] = ACTIONS(2335), - [sym_float_literal] = ACTIONS(2335), - [sym_block_comment] = ACTIONS(3), - }, - [563] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1813), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_COMMA] = ACTIONS(2339), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [564] = { [sym_identifier] = ACTIONS(2341), [anon_sym_LPAREN] = ACTIONS(2343), [anon_sym_RPAREN] = ACTIONS(2343), @@ -65128,6 +64698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(2343), [anon_sym_LBRACK] = ACTIONS(2343), [anon_sym_RBRACK] = ACTIONS(2343), + [anon_sym_COLON] = ACTIONS(2345), [anon_sym_DOLLAR] = ACTIONS(2341), [anon_sym_u8] = ACTIONS(2341), [anon_sym_i8] = ACTIONS(2341), @@ -65181,7 +64752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2343), [anon_sym_true] = ACTIONS(2341), [anon_sym_false] = ACTIONS(2341), - [sym_line_comment] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2341), [sym_super] = ACTIONS(2341), [sym_crate] = ACTIONS(2341), @@ -65190,176 +64761,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2343), [sym_block_comment] = ACTIONS(3), }, - [565] = { - [sym_identifier] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_RBRACK] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2345), - [anon_sym_u8] = ACTIONS(2345), - [anon_sym_i8] = ACTIONS(2345), - [anon_sym_u16] = ACTIONS(2345), - [anon_sym_i16] = ACTIONS(2345), - [anon_sym_u32] = ACTIONS(2345), - [anon_sym_i32] = ACTIONS(2345), - [anon_sym_u64] = ACTIONS(2345), - [anon_sym_i64] = ACTIONS(2345), - [anon_sym_u128] = ACTIONS(2345), - [anon_sym_i128] = ACTIONS(2345), - [anon_sym_isize] = ACTIONS(2345), - [anon_sym_usize] = ACTIONS(2345), - [anon_sym_f32] = ACTIONS(2345), - [anon_sym_f64] = ACTIONS(2345), - [anon_sym_bool] = ACTIONS(2345), - [anon_sym_str] = ACTIONS(2345), - [anon_sym_char] = ACTIONS(2345), - [aux_sym__non_special_token_token1] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_fn] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_impl] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_mod] = ACTIONS(2345), - [anon_sym_pub] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_struct] = ACTIONS(2345), - [anon_sym_trait] = ACTIONS(2345), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_unsafe] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_where] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [sym_mutable_specifier] = ACTIONS(2345), - [sym_integer_literal] = ACTIONS(2347), - [aux_sym_string_literal_token1] = ACTIONS(2347), - [sym_char_literal] = ACTIONS(2347), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2345), - [sym_super] = ACTIONS(2345), - [sym_crate] = ACTIONS(2345), - [sym_metavariable] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2347), - [sym_float_literal] = ACTIONS(2347), - [sym_block_comment] = ACTIONS(3), - }, - [566] = { - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_RBRACK] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_u8] = ACTIONS(2349), - [anon_sym_i8] = ACTIONS(2349), - [anon_sym_u16] = ACTIONS(2349), - [anon_sym_i16] = ACTIONS(2349), - [anon_sym_u32] = ACTIONS(2349), - [anon_sym_i32] = ACTIONS(2349), - [anon_sym_u64] = ACTIONS(2349), - [anon_sym_i64] = ACTIONS(2349), - [anon_sym_u128] = ACTIONS(2349), - [anon_sym_i128] = ACTIONS(2349), - [anon_sym_isize] = ACTIONS(2349), - [anon_sym_usize] = ACTIONS(2349), - [anon_sym_f32] = ACTIONS(2349), - [anon_sym_f64] = ACTIONS(2349), - [anon_sym_bool] = ACTIONS(2349), - [anon_sym_str] = ACTIONS(2349), - [anon_sym_char] = ACTIONS(2349), - [aux_sym__non_special_token_token1] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_await] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_default] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), - [anon_sym_fn] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_impl] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_mod] = ACTIONS(2349), - [anon_sym_pub] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_static] = ACTIONS(2349), - [anon_sym_struct] = ACTIONS(2349), - [anon_sym_trait] = ACTIONS(2349), - [anon_sym_type] = ACTIONS(2349), - [anon_sym_union] = ACTIONS(2349), - [anon_sym_unsafe] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_where] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [sym_mutable_specifier] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2351), - [aux_sym_string_literal_token1] = ACTIONS(2351), - [sym_char_literal] = ACTIONS(2351), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2349), - [sym_super] = ACTIONS(2349), - [sym_crate] = ACTIONS(2349), - [sym_metavariable] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2351), - [sym_float_literal] = ACTIONS(2351), - [sym_block_comment] = ACTIONS(3), - }, - [567] = { - [sym_function_modifiers] = STATE(2404), - [sym_higher_ranked_trait_bound] = STATE(1571), - [sym_removed_trait_bound] = STATE(1571), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1575), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(1576), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [557] = { + [sym_attribute_item] = STATE(1140), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(669), + [sym__type] = STATE(1804), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(1140), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -65377,15 +64808,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -65395,247 +64828,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [568] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1842), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [569] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1842), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(2359), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [570] = { - [sym_parameter] = STATE(2307), - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1946), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(2289), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2293), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [571] = { - [sym_function_modifiers] = STATE(2404), - [sym_higher_ranked_trait_bound] = STATE(1571), - [sym_removed_trait_bound] = STATE(1571), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1575), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(1573), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [558] = { + [sym_attribute_item] = STATE(1140), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(713), + [sym__type] = STATE(2101), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(1140), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -65653,15 +64879,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -65671,62 +64899,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [572] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1842), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [559] = { + [sym_identifier] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_RBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2347), + [anon_sym_u8] = ACTIONS(2347), + [anon_sym_i8] = ACTIONS(2347), + [anon_sym_u16] = ACTIONS(2347), + [anon_sym_i16] = ACTIONS(2347), + [anon_sym_u32] = ACTIONS(2347), + [anon_sym_i32] = ACTIONS(2347), + [anon_sym_u64] = ACTIONS(2347), + [anon_sym_i64] = ACTIONS(2347), + [anon_sym_u128] = ACTIONS(2347), + [anon_sym_i128] = ACTIONS(2347), + [anon_sym_isize] = ACTIONS(2347), + [anon_sym_usize] = ACTIONS(2347), + [anon_sym_f32] = ACTIONS(2347), + [anon_sym_f64] = ACTIONS(2347), + [anon_sym_bool] = ACTIONS(2347), + [anon_sym_str] = ACTIONS(2347), + [anon_sym_char] = ACTIONS(2347), + [aux_sym__non_special_token_token1] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_default] = ACTIONS(2347), + [anon_sym_enum] = ACTIONS(2347), + [anon_sym_fn] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_impl] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_mod] = ACTIONS(2347), + [anon_sym_pub] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_static] = ACTIONS(2347), + [anon_sym_struct] = ACTIONS(2347), + [anon_sym_trait] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2347), + [anon_sym_unsafe] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_where] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [sym_mutable_specifier] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_metavariable] = ACTIONS(2349), + [sym_raw_string_literal] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), + [sym_block_comment] = ACTIONS(3), + }, + [560] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_COMMA] = ACTIONS(840), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -65736,135 +65035,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [573] = { - [sym_function_modifiers] = STATE(2404), - [sym_higher_ranked_trait_bound] = STATE(1532), - [sym_removed_trait_bound] = STATE(1532), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1536), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(1537), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [561] = { + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_RPAREN] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_RBRACK] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(2357), + [anon_sym_i8] = ACTIONS(2357), + [anon_sym_u16] = ACTIONS(2357), + [anon_sym_i16] = ACTIONS(2357), + [anon_sym_u32] = ACTIONS(2357), + [anon_sym_i32] = ACTIONS(2357), + [anon_sym_u64] = ACTIONS(2357), + [anon_sym_i64] = ACTIONS(2357), + [anon_sym_u128] = ACTIONS(2357), + [anon_sym_i128] = ACTIONS(2357), + [anon_sym_isize] = ACTIONS(2357), + [anon_sym_usize] = ACTIONS(2357), + [anon_sym_f32] = ACTIONS(2357), + [anon_sym_f64] = ACTIONS(2357), + [anon_sym_bool] = ACTIONS(2357), + [anon_sym_str] = ACTIONS(2357), + [anon_sym_char] = ACTIONS(2357), + [aux_sym__non_special_token_token1] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_as] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_await] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_impl] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_mod] = ACTIONS(2357), + [anon_sym_pub] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_where] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [sym_mutable_specifier] = ACTIONS(2357), + [sym_integer_literal] = ACTIONS(2359), + [aux_sym_string_literal_token1] = ACTIONS(2359), + [sym_char_literal] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2357), + [sym_metavariable] = ACTIONS(2359), + [sym_raw_string_literal] = ACTIONS(2359), + [sym_float_literal] = ACTIONS(2359), [sym_block_comment] = ACTIONS(3), }, - [574] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1842), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [562] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1821), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_COMMA] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -65874,44 +65175,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [575] = { - [sym_function_modifiers] = STATE(2404), - [sym_higher_ranked_trait_bound] = STATE(1571), - [sym_removed_trait_bound] = STATE(1571), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1572), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(1573), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [563] = { + [sym_function_modifiers] = STATE(2411), + [sym_const_parameter] = STATE(2119), + [sym_constrained_type_parameter] = STATE(1862), + [sym_optional_type_parameter] = STATE(2119), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2068), + [sym_bracketed_type] = STATE(2370), + [sym_qualified_type] = STATE(2346), + [sym_lifetime] = STATE(1682), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2365), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -65929,12 +65231,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), + [anon_sym_const] = ACTIONS(2367), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -65948,266 +65250,972 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_metavariable] = ACTIONS(2369), [sym_block_comment] = ACTIONS(3), }, - [576] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1842), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [564] = { + [sym_identifier] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2371), + [anon_sym_u8] = ACTIONS(2371), + [anon_sym_i8] = ACTIONS(2371), + [anon_sym_u16] = ACTIONS(2371), + [anon_sym_i16] = ACTIONS(2371), + [anon_sym_u32] = ACTIONS(2371), + [anon_sym_i32] = ACTIONS(2371), + [anon_sym_u64] = ACTIONS(2371), + [anon_sym_i64] = ACTIONS(2371), + [anon_sym_u128] = ACTIONS(2371), + [anon_sym_i128] = ACTIONS(2371), + [anon_sym_isize] = ACTIONS(2371), + [anon_sym_usize] = ACTIONS(2371), + [anon_sym_f32] = ACTIONS(2371), + [anon_sym_f64] = ACTIONS(2371), + [anon_sym_bool] = ACTIONS(2371), + [anon_sym_str] = ACTIONS(2371), + [anon_sym_char] = ACTIONS(2371), + [aux_sym__non_special_token_token1] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_await] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_impl] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_mod] = ACTIONS(2371), + [anon_sym_pub] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_trait] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_where] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [sym_mutable_specifier] = ACTIONS(2371), + [sym_integer_literal] = ACTIONS(2373), + [aux_sym_string_literal_token1] = ACTIONS(2373), + [sym_char_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2371), + [sym_super] = ACTIONS(2371), + [sym_crate] = ACTIONS(2371), + [sym_metavariable] = ACTIONS(2373), + [sym_raw_string_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), [sym_block_comment] = ACTIONS(3), }, - [577] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1842), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(2367), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [565] = { + [sym_identifier] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_RBRACK] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_u8] = ACTIONS(2375), + [anon_sym_i8] = ACTIONS(2375), + [anon_sym_u16] = ACTIONS(2375), + [anon_sym_i16] = ACTIONS(2375), + [anon_sym_u32] = ACTIONS(2375), + [anon_sym_i32] = ACTIONS(2375), + [anon_sym_u64] = ACTIONS(2375), + [anon_sym_i64] = ACTIONS(2375), + [anon_sym_u128] = ACTIONS(2375), + [anon_sym_i128] = ACTIONS(2375), + [anon_sym_isize] = ACTIONS(2375), + [anon_sym_usize] = ACTIONS(2375), + [anon_sym_f32] = ACTIONS(2375), + [anon_sym_f64] = ACTIONS(2375), + [anon_sym_bool] = ACTIONS(2375), + [anon_sym_str] = ACTIONS(2375), + [anon_sym_char] = ACTIONS(2375), + [aux_sym__non_special_token_token1] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_as] = ACTIONS(2375), + [anon_sym_async] = ACTIONS(2375), + [anon_sym_await] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_default] = ACTIONS(2375), + [anon_sym_enum] = ACTIONS(2375), + [anon_sym_fn] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_impl] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_loop] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_mod] = ACTIONS(2375), + [anon_sym_pub] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_static] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2375), + [anon_sym_trait] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2375), + [anon_sym_union] = ACTIONS(2375), + [anon_sym_unsafe] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2375), + [anon_sym_where] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [sym_mutable_specifier] = ACTIONS(2375), + [sym_integer_literal] = ACTIONS(2377), + [aux_sym_string_literal_token1] = ACTIONS(2377), + [sym_char_literal] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2375), + [anon_sym_false] = ACTIONS(2375), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2375), + [sym_super] = ACTIONS(2375), + [sym_crate] = ACTIONS(2375), + [sym_metavariable] = ACTIONS(2377), + [sym_raw_string_literal] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2377), [sym_block_comment] = ACTIONS(3), }, - [578] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1775), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(2369), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [566] = { + [sym_identifier] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_RBRACK] = ACTIONS(2381), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_u8] = ACTIONS(2379), + [anon_sym_i8] = ACTIONS(2379), + [anon_sym_u16] = ACTIONS(2379), + [anon_sym_i16] = ACTIONS(2379), + [anon_sym_u32] = ACTIONS(2379), + [anon_sym_i32] = ACTIONS(2379), + [anon_sym_u64] = ACTIONS(2379), + [anon_sym_i64] = ACTIONS(2379), + [anon_sym_u128] = ACTIONS(2379), + [anon_sym_i128] = ACTIONS(2379), + [anon_sym_isize] = ACTIONS(2379), + [anon_sym_usize] = ACTIONS(2379), + [anon_sym_f32] = ACTIONS(2379), + [anon_sym_f64] = ACTIONS(2379), + [anon_sym_bool] = ACTIONS(2379), + [anon_sym_str] = ACTIONS(2379), + [anon_sym_char] = ACTIONS(2379), + [aux_sym__non_special_token_token1] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_async] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_impl] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_mod] = ACTIONS(2379), + [anon_sym_pub] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_trait] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_where] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [sym_mutable_specifier] = ACTIONS(2379), + [sym_integer_literal] = ACTIONS(2381), + [aux_sym_string_literal_token1] = ACTIONS(2381), + [sym_char_literal] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2379), + [anon_sym_false] = ACTIONS(2379), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2379), + [sym_super] = ACTIONS(2379), + [sym_crate] = ACTIONS(2379), + [sym_metavariable] = ACTIONS(2381), + [sym_raw_string_literal] = ACTIONS(2381), + [sym_float_literal] = ACTIONS(2381), [sym_block_comment] = ACTIONS(3), }, - [579] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1463), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [567] = { + [sym_identifier] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_RBRACK] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2383), + [anon_sym_u8] = ACTIONS(2383), + [anon_sym_i8] = ACTIONS(2383), + [anon_sym_u16] = ACTIONS(2383), + [anon_sym_i16] = ACTIONS(2383), + [anon_sym_u32] = ACTIONS(2383), + [anon_sym_i32] = ACTIONS(2383), + [anon_sym_u64] = ACTIONS(2383), + [anon_sym_i64] = ACTIONS(2383), + [anon_sym_u128] = ACTIONS(2383), + [anon_sym_i128] = ACTIONS(2383), + [anon_sym_isize] = ACTIONS(2383), + [anon_sym_usize] = ACTIONS(2383), + [anon_sym_f32] = ACTIONS(2383), + [anon_sym_f64] = ACTIONS(2383), + [anon_sym_bool] = ACTIONS(2383), + [anon_sym_str] = ACTIONS(2383), + [anon_sym_char] = ACTIONS(2383), + [aux_sym__non_special_token_token1] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_default] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_impl] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_mod] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2383), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_trait] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_where] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [sym_mutable_specifier] = ACTIONS(2383), + [sym_integer_literal] = ACTIONS(2385), + [aux_sym_string_literal_token1] = ACTIONS(2385), + [sym_char_literal] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2383), + [anon_sym_false] = ACTIONS(2383), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2383), + [sym_super] = ACTIONS(2383), + [sym_crate] = ACTIONS(2383), + [sym_metavariable] = ACTIONS(2385), + [sym_raw_string_literal] = ACTIONS(2385), + [sym_float_literal] = ACTIONS(2385), + [sym_block_comment] = ACTIONS(3), + }, + [568] = { + [sym_identifier] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2389), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_RBRACK] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2387), + [anon_sym_u8] = ACTIONS(2387), + [anon_sym_i8] = ACTIONS(2387), + [anon_sym_u16] = ACTIONS(2387), + [anon_sym_i16] = ACTIONS(2387), + [anon_sym_u32] = ACTIONS(2387), + [anon_sym_i32] = ACTIONS(2387), + [anon_sym_u64] = ACTIONS(2387), + [anon_sym_i64] = ACTIONS(2387), + [anon_sym_u128] = ACTIONS(2387), + [anon_sym_i128] = ACTIONS(2387), + [anon_sym_isize] = ACTIONS(2387), + [anon_sym_usize] = ACTIONS(2387), + [anon_sym_f32] = ACTIONS(2387), + [anon_sym_f64] = ACTIONS(2387), + [anon_sym_bool] = ACTIONS(2387), + [anon_sym_str] = ACTIONS(2387), + [anon_sym_char] = ACTIONS(2387), + [aux_sym__non_special_token_token1] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_await] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(2387), + [anon_sym_const] = ACTIONS(2387), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_enum] = ACTIONS(2387), + [anon_sym_fn] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_impl] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2387), + [anon_sym_loop] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_mod] = ACTIONS(2387), + [anon_sym_pub] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(2387), + [anon_sym_trait] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(2387), + [anon_sym_use] = ACTIONS(2387), + [anon_sym_where] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [sym_mutable_specifier] = ACTIONS(2387), + [sym_integer_literal] = ACTIONS(2389), + [aux_sym_string_literal_token1] = ACTIONS(2389), + [sym_char_literal] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2387), + [sym_super] = ACTIONS(2387), + [sym_crate] = ACTIONS(2387), + [sym_metavariable] = ACTIONS(2389), + [sym_raw_string_literal] = ACTIONS(2389), + [sym_float_literal] = ACTIONS(2389), + [sym_block_comment] = ACTIONS(3), + }, + [569] = { + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_RPAREN] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_RBRACK] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_u8] = ACTIONS(2391), + [anon_sym_i8] = ACTIONS(2391), + [anon_sym_u16] = ACTIONS(2391), + [anon_sym_i16] = ACTIONS(2391), + [anon_sym_u32] = ACTIONS(2391), + [anon_sym_i32] = ACTIONS(2391), + [anon_sym_u64] = ACTIONS(2391), + [anon_sym_i64] = ACTIONS(2391), + [anon_sym_u128] = ACTIONS(2391), + [anon_sym_i128] = ACTIONS(2391), + [anon_sym_isize] = ACTIONS(2391), + [anon_sym_usize] = ACTIONS(2391), + [anon_sym_f32] = ACTIONS(2391), + [anon_sym_f64] = ACTIONS(2391), + [anon_sym_bool] = ACTIONS(2391), + [anon_sym_str] = ACTIONS(2391), + [anon_sym_char] = ACTIONS(2391), + [aux_sym__non_special_token_token1] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_as] = ACTIONS(2391), + [anon_sym_async] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_default] = ACTIONS(2391), + [anon_sym_enum] = ACTIONS(2391), + [anon_sym_fn] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_impl] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_mod] = ACTIONS(2391), + [anon_sym_pub] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_static] = ACTIONS(2391), + [anon_sym_struct] = ACTIONS(2391), + [anon_sym_trait] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2391), + [anon_sym_union] = ACTIONS(2391), + [anon_sym_unsafe] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_where] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [sym_mutable_specifier] = ACTIONS(2391), + [sym_integer_literal] = ACTIONS(2393), + [aux_sym_string_literal_token1] = ACTIONS(2393), + [sym_char_literal] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2391), + [sym_super] = ACTIONS(2391), + [sym_crate] = ACTIONS(2391), + [sym_metavariable] = ACTIONS(2393), + [sym_raw_string_literal] = ACTIONS(2393), + [sym_float_literal] = ACTIONS(2393), + [sym_block_comment] = ACTIONS(3), + }, + [570] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_RPAREN] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_RBRACK] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2395), + [anon_sym_u8] = ACTIONS(2395), + [anon_sym_i8] = ACTIONS(2395), + [anon_sym_u16] = ACTIONS(2395), + [anon_sym_i16] = ACTIONS(2395), + [anon_sym_u32] = ACTIONS(2395), + [anon_sym_i32] = ACTIONS(2395), + [anon_sym_u64] = ACTIONS(2395), + [anon_sym_i64] = ACTIONS(2395), + [anon_sym_u128] = ACTIONS(2395), + [anon_sym_i128] = ACTIONS(2395), + [anon_sym_isize] = ACTIONS(2395), + [anon_sym_usize] = ACTIONS(2395), + [anon_sym_f32] = ACTIONS(2395), + [anon_sym_f64] = ACTIONS(2395), + [anon_sym_bool] = ACTIONS(2395), + [anon_sym_str] = ACTIONS(2395), + [anon_sym_char] = ACTIONS(2395), + [aux_sym__non_special_token_token1] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_async] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_fn] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_impl] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2395), + [anon_sym_loop] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_mod] = ACTIONS(2395), + [anon_sym_pub] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_trait] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_unsafe] = ACTIONS(2395), + [anon_sym_use] = ACTIONS(2395), + [anon_sym_where] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [sym_mutable_specifier] = ACTIONS(2395), + [sym_integer_literal] = ACTIONS(2397), + [aux_sym_string_literal_token1] = ACTIONS(2397), + [sym_char_literal] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2395), + [anon_sym_false] = ACTIONS(2395), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2395), + [sym_super] = ACTIONS(2395), + [sym_crate] = ACTIONS(2395), + [sym_metavariable] = ACTIONS(2397), + [sym_raw_string_literal] = ACTIONS(2397), + [sym_float_literal] = ACTIONS(2397), + [sym_block_comment] = ACTIONS(3), + }, + [571] = { + [sym_identifier] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_RPAREN] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_RBRACK] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_u8] = ACTIONS(2399), + [anon_sym_i8] = ACTIONS(2399), + [anon_sym_u16] = ACTIONS(2399), + [anon_sym_i16] = ACTIONS(2399), + [anon_sym_u32] = ACTIONS(2399), + [anon_sym_i32] = ACTIONS(2399), + [anon_sym_u64] = ACTIONS(2399), + [anon_sym_i64] = ACTIONS(2399), + [anon_sym_u128] = ACTIONS(2399), + [anon_sym_i128] = ACTIONS(2399), + [anon_sym_isize] = ACTIONS(2399), + [anon_sym_usize] = ACTIONS(2399), + [anon_sym_f32] = ACTIONS(2399), + [anon_sym_f64] = ACTIONS(2399), + [anon_sym_bool] = ACTIONS(2399), + [anon_sym_str] = ACTIONS(2399), + [anon_sym_char] = ACTIONS(2399), + [aux_sym__non_special_token_token1] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_as] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_fn] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_impl] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), + [anon_sym_loop] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_mod] = ACTIONS(2399), + [anon_sym_pub] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_trait] = ACTIONS(2399), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_unsafe] = ACTIONS(2399), + [anon_sym_use] = ACTIONS(2399), + [anon_sym_where] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [sym_mutable_specifier] = ACTIONS(2399), + [sym_integer_literal] = ACTIONS(2401), + [aux_sym_string_literal_token1] = ACTIONS(2401), + [sym_char_literal] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_raw_string_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + }, + [572] = { + [sym_identifier] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_RBRACK] = ACTIONS(2405), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_u8] = ACTIONS(2403), + [anon_sym_i8] = ACTIONS(2403), + [anon_sym_u16] = ACTIONS(2403), + [anon_sym_i16] = ACTIONS(2403), + [anon_sym_u32] = ACTIONS(2403), + [anon_sym_i32] = ACTIONS(2403), + [anon_sym_u64] = ACTIONS(2403), + [anon_sym_i64] = ACTIONS(2403), + [anon_sym_u128] = ACTIONS(2403), + [anon_sym_i128] = ACTIONS(2403), + [anon_sym_isize] = ACTIONS(2403), + [anon_sym_usize] = ACTIONS(2403), + [anon_sym_f32] = ACTIONS(2403), + [anon_sym_f64] = ACTIONS(2403), + [anon_sym_bool] = ACTIONS(2403), + [anon_sym_str] = ACTIONS(2403), + [anon_sym_char] = ACTIONS(2403), + [aux_sym__non_special_token_token1] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_fn] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_impl] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_loop] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_mod] = ACTIONS(2403), + [anon_sym_pub] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_trait] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_unsafe] = ACTIONS(2403), + [anon_sym_use] = ACTIONS(2403), + [anon_sym_where] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [sym_mutable_specifier] = ACTIONS(2403), + [sym_integer_literal] = ACTIONS(2405), + [aux_sym_string_literal_token1] = ACTIONS(2405), + [sym_char_literal] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2403), + [anon_sym_false] = ACTIONS(2403), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2403), + [sym_super] = ACTIONS(2403), + [sym_crate] = ACTIONS(2403), + [sym_metavariable] = ACTIONS(2405), + [sym_raw_string_literal] = ACTIONS(2405), + [sym_float_literal] = ACTIONS(2405), + [sym_block_comment] = ACTIONS(3), + }, + [573] = { + [sym_identifier] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_RPAREN] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2409), + [anon_sym_RBRACK] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2407), + [anon_sym_i8] = ACTIONS(2407), + [anon_sym_u16] = ACTIONS(2407), + [anon_sym_i16] = ACTIONS(2407), + [anon_sym_u32] = ACTIONS(2407), + [anon_sym_i32] = ACTIONS(2407), + [anon_sym_u64] = ACTIONS(2407), + [anon_sym_i64] = ACTIONS(2407), + [anon_sym_u128] = ACTIONS(2407), + [anon_sym_i128] = ACTIONS(2407), + [anon_sym_isize] = ACTIONS(2407), + [anon_sym_usize] = ACTIONS(2407), + [anon_sym_f32] = ACTIONS(2407), + [anon_sym_f64] = ACTIONS(2407), + [anon_sym_bool] = ACTIONS(2407), + [anon_sym_str] = ACTIONS(2407), + [anon_sym_char] = ACTIONS(2407), + [aux_sym__non_special_token_token1] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_as] = ACTIONS(2407), + [anon_sym_async] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_fn] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_impl] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_mod] = ACTIONS(2407), + [anon_sym_pub] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_trait] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_where] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [sym_mutable_specifier] = ACTIONS(2407), + [sym_integer_literal] = ACTIONS(2409), + [aux_sym_string_literal_token1] = ACTIONS(2409), + [sym_char_literal] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2407), + [anon_sym_false] = ACTIONS(2407), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2407), + [sym_super] = ACTIONS(2407), + [sym_crate] = ACTIONS(2407), + [sym_metavariable] = ACTIONS(2409), + [sym_raw_string_literal] = ACTIONS(2409), + [sym_float_literal] = ACTIONS(2409), + [sym_block_comment] = ACTIONS(3), + }, + [574] = { + [sym_identifier] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_RPAREN] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_RBRACK] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_u8] = ACTIONS(2411), + [anon_sym_i8] = ACTIONS(2411), + [anon_sym_u16] = ACTIONS(2411), + [anon_sym_i16] = ACTIONS(2411), + [anon_sym_u32] = ACTIONS(2411), + [anon_sym_i32] = ACTIONS(2411), + [anon_sym_u64] = ACTIONS(2411), + [anon_sym_i64] = ACTIONS(2411), + [anon_sym_u128] = ACTIONS(2411), + [anon_sym_i128] = ACTIONS(2411), + [anon_sym_isize] = ACTIONS(2411), + [anon_sym_usize] = ACTIONS(2411), + [anon_sym_f32] = ACTIONS(2411), + [anon_sym_f64] = ACTIONS(2411), + [anon_sym_bool] = ACTIONS(2411), + [anon_sym_str] = ACTIONS(2411), + [anon_sym_char] = ACTIONS(2411), + [aux_sym__non_special_token_token1] = ACTIONS(2411), + [anon_sym_SQUOTE] = ACTIONS(2411), + [anon_sym_as] = ACTIONS(2411), + [anon_sym_async] = ACTIONS(2411), + [anon_sym_await] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_fn] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_impl] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_loop] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_mod] = ACTIONS(2411), + [anon_sym_pub] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_trait] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_unsafe] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_where] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [sym_mutable_specifier] = ACTIONS(2411), + [sym_integer_literal] = ACTIONS(2413), + [aux_sym_string_literal_token1] = ACTIONS(2413), + [sym_char_literal] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2411), + [anon_sym_false] = ACTIONS(2411), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2411), + [sym_super] = ACTIONS(2411), + [sym_crate] = ACTIONS(2411), + [sym_metavariable] = ACTIONS(2413), + [sym_raw_string_literal] = ACTIONS(2413), + [sym_float_literal] = ACTIONS(2413), + [sym_block_comment] = ACTIONS(3), + }, + [575] = { + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_RPAREN] = ACTIONS(2417), + [anon_sym_LBRACE] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2417), + [anon_sym_RBRACK] = ACTIONS(2417), + [anon_sym_DOLLAR] = ACTIONS(2415), + [anon_sym_u8] = ACTIONS(2415), + [anon_sym_i8] = ACTIONS(2415), + [anon_sym_u16] = ACTIONS(2415), + [anon_sym_i16] = ACTIONS(2415), + [anon_sym_u32] = ACTIONS(2415), + [anon_sym_i32] = ACTIONS(2415), + [anon_sym_u64] = ACTIONS(2415), + [anon_sym_i64] = ACTIONS(2415), + [anon_sym_u128] = ACTIONS(2415), + [anon_sym_i128] = ACTIONS(2415), + [anon_sym_isize] = ACTIONS(2415), + [anon_sym_usize] = ACTIONS(2415), + [anon_sym_f32] = ACTIONS(2415), + [anon_sym_f64] = ACTIONS(2415), + [anon_sym_bool] = ACTIONS(2415), + [anon_sym_str] = ACTIONS(2415), + [anon_sym_char] = ACTIONS(2415), + [aux_sym__non_special_token_token1] = ACTIONS(2415), + [anon_sym_SQUOTE] = ACTIONS(2415), + [anon_sym_as] = ACTIONS(2415), + [anon_sym_async] = ACTIONS(2415), + [anon_sym_await] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2415), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_continue] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2415), + [anon_sym_enum] = ACTIONS(2415), + [anon_sym_fn] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_impl] = ACTIONS(2415), + [anon_sym_let] = ACTIONS(2415), + [anon_sym_loop] = ACTIONS(2415), + [anon_sym_match] = ACTIONS(2415), + [anon_sym_mod] = ACTIONS(2415), + [anon_sym_pub] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_static] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(2415), + [anon_sym_trait] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2415), + [anon_sym_union] = ACTIONS(2415), + [anon_sym_unsafe] = ACTIONS(2415), + [anon_sym_use] = ACTIONS(2415), + [anon_sym_where] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [sym_mutable_specifier] = ACTIONS(2415), + [sym_integer_literal] = ACTIONS(2417), + [aux_sym_string_literal_token1] = ACTIONS(2417), + [sym_char_literal] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(2415), + [anon_sym_false] = ACTIONS(2415), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2415), + [sym_super] = ACTIONS(2415), + [sym_crate] = ACTIONS(2415), + [sym_metavariable] = ACTIONS(2417), + [sym_raw_string_literal] = ACTIONS(2417), + [sym_float_literal] = ACTIONS(2417), + [sym_block_comment] = ACTIONS(3), + }, + [576] = { + [sym_identifier] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_RBRACK] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2419), + [anon_sym_u8] = ACTIONS(2419), + [anon_sym_i8] = ACTIONS(2419), + [anon_sym_u16] = ACTIONS(2419), + [anon_sym_i16] = ACTIONS(2419), + [anon_sym_u32] = ACTIONS(2419), + [anon_sym_i32] = ACTIONS(2419), + [anon_sym_u64] = ACTIONS(2419), + [anon_sym_i64] = ACTIONS(2419), + [anon_sym_u128] = ACTIONS(2419), + [anon_sym_i128] = ACTIONS(2419), + [anon_sym_isize] = ACTIONS(2419), + [anon_sym_usize] = ACTIONS(2419), + [anon_sym_f32] = ACTIONS(2419), + [anon_sym_f64] = ACTIONS(2419), + [anon_sym_bool] = ACTIONS(2419), + [anon_sym_str] = ACTIONS(2419), + [anon_sym_char] = ACTIONS(2419), + [aux_sym__non_special_token_token1] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2419), + [anon_sym_as] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_fn] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_impl] = ACTIONS(2419), + [anon_sym_let] = ACTIONS(2419), + [anon_sym_loop] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_mod] = ACTIONS(2419), + [anon_sym_pub] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_trait] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(2419), + [anon_sym_use] = ACTIONS(2419), + [anon_sym_where] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [sym_mutable_specifier] = ACTIONS(2419), + [sym_integer_literal] = ACTIONS(2421), + [aux_sym_string_literal_token1] = ACTIONS(2421), + [sym_char_literal] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2419), + [anon_sym_false] = ACTIONS(2419), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym_raw_string_literal] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2421), + [sym_block_comment] = ACTIONS(3), + }, + [577] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1834), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_RBRACK] = ACTIONS(810), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_COMMA] = ACTIONS(818), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66217,201 +66225,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [580] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [578] = { + [sym_parameter] = STATE(1986), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1817), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(2425), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(2427), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [581] = { - [sym_function_modifiers] = STATE(2353), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1040), - [sym_bracketed_type] = STATE(2456), - [sym_lifetime] = STATE(2325), - [sym_array_type] = STATE(1091), - [sym_for_lifetimes] = STATE(1182), - [sym_function_type] = STATE(1091), - [sym_tuple_type] = STATE(1091), - [sym_unit_type] = STATE(1091), - [sym_generic_type] = STATE(808), - [sym_generic_type_with_turbofish] = STATE(2457), - [sym_bounded_type] = STATE(1091), - [sym_reference_type] = STATE(1091), - [sym_pointer_type] = STATE(1091), - [sym_empty_type] = STATE(1091), - [sym_abstract_type] = STATE(1091), - [sym_dynamic_type] = STATE(1091), - [sym_macro_invocation] = STATE(1091), - [sym_scoped_identifier] = STATE(2295), - [sym_scoped_type_identifier] = STATE(753), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_PLUS] = ACTIONS(2377), - [anon_sym_STAR] = ACTIONS(2379), - [anon_sym_u8] = ACTIONS(2381), - [anon_sym_i8] = ACTIONS(2381), - [anon_sym_u16] = ACTIONS(2381), - [anon_sym_i16] = ACTIONS(2381), - [anon_sym_u32] = ACTIONS(2381), - [anon_sym_i32] = ACTIONS(2381), - [anon_sym_u64] = ACTIONS(2381), - [anon_sym_i64] = ACTIONS(2381), - [anon_sym_u128] = ACTIONS(2381), - [anon_sym_i128] = ACTIONS(2381), - [anon_sym_isize] = ACTIONS(2381), - [anon_sym_usize] = ACTIONS(2381), - [anon_sym_f32] = ACTIONS(2381), - [anon_sym_f64] = ACTIONS(2381), - [anon_sym_bool] = ACTIONS(2381), - [anon_sym_str] = ACTIONS(2381), - [anon_sym_char] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2383), - [anon_sym_fn] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2389), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_dyn] = ACTIONS(2397), - [sym_mutable_specifier] = ACTIONS(2399), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2401), - [sym_super] = ACTIONS(2401), - [sym_crate] = ACTIONS(2401), - [sym_metavariable] = ACTIONS(2403), + [579] = { + [sym_identifier] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_RPAREN] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_RBRACK] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2431), + [anon_sym_u8] = ACTIONS(2431), + [anon_sym_i8] = ACTIONS(2431), + [anon_sym_u16] = ACTIONS(2431), + [anon_sym_i16] = ACTIONS(2431), + [anon_sym_u32] = ACTIONS(2431), + [anon_sym_i32] = ACTIONS(2431), + [anon_sym_u64] = ACTIONS(2431), + [anon_sym_i64] = ACTIONS(2431), + [anon_sym_u128] = ACTIONS(2431), + [anon_sym_i128] = ACTIONS(2431), + [anon_sym_isize] = ACTIONS(2431), + [anon_sym_usize] = ACTIONS(2431), + [anon_sym_f32] = ACTIONS(2431), + [anon_sym_f64] = ACTIONS(2431), + [anon_sym_bool] = ACTIONS(2431), + [anon_sym_str] = ACTIONS(2431), + [anon_sym_char] = ACTIONS(2431), + [aux_sym__non_special_token_token1] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_as] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_const] = ACTIONS(2431), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_default] = ACTIONS(2431), + [anon_sym_enum] = ACTIONS(2431), + [anon_sym_fn] = ACTIONS(2431), + [anon_sym_for] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_impl] = ACTIONS(2431), + [anon_sym_let] = ACTIONS(2431), + [anon_sym_loop] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_mod] = ACTIONS(2431), + [anon_sym_pub] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2431), + [anon_sym_static] = ACTIONS(2431), + [anon_sym_struct] = ACTIONS(2431), + [anon_sym_trait] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2431), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_unsafe] = ACTIONS(2431), + [anon_sym_use] = ACTIONS(2431), + [anon_sym_where] = ACTIONS(2431), + [anon_sym_while] = ACTIONS(2431), + [sym_mutable_specifier] = ACTIONS(2431), + [sym_integer_literal] = ACTIONS(2433), + [aux_sym_string_literal_token1] = ACTIONS(2433), + [sym_char_literal] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2431), + [anon_sym_false] = ACTIONS(2431), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2431), + [sym_super] = ACTIONS(2431), + [sym_crate] = ACTIONS(2431), + [sym_metavariable] = ACTIONS(2433), + [sym_raw_string_literal] = ACTIONS(2433), + [sym_float_literal] = ACTIONS(2433), [sym_block_comment] = ACTIONS(3), }, - [582] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2152), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [580] = { + [sym_identifier] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_RPAREN] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_RBRACK] = ACTIONS(620), + [anon_sym_DOLLAR] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [aux_sym__non_special_token_token1] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_async] = ACTIONS(622), + [anon_sym_await] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_fn] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_impl] = ACTIONS(622), + [anon_sym_let] = ACTIONS(622), + [anon_sym_loop] = ACTIONS(622), + [anon_sym_match] = ACTIONS(622), + [anon_sym_mod] = ACTIONS(622), + [anon_sym_pub] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_static] = ACTIONS(622), + [anon_sym_struct] = ACTIONS(622), + [anon_sym_trait] = ACTIONS(622), + [anon_sym_type] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_unsafe] = ACTIONS(622), + [anon_sym_use] = ACTIONS(622), + [anon_sym_where] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [sym_mutable_specifier] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), + [sym_block_comment] = ACTIONS(3), + }, + [581] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66421,42 +66503,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [582] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [aux_sym__non_special_token_token1] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_async] = ACTIONS(654), + [anon_sym_await] = ACTIONS(654), + [anon_sym_break] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_continue] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_fn] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_impl] = ACTIONS(654), + [anon_sym_let] = ACTIONS(654), + [anon_sym_loop] = ACTIONS(654), + [anon_sym_match] = ACTIONS(654), + [anon_sym_mod] = ACTIONS(654), + [anon_sym_pub] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_static] = ACTIONS(654), + [anon_sym_struct] = ACTIONS(654), + [anon_sym_trait] = ACTIONS(654), + [anon_sym_type] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_unsafe] = ACTIONS(654), + [anon_sym_use] = ACTIONS(654), + [anon_sym_where] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [sym_mutable_specifier] = ACTIONS(654), + [sym_integer_literal] = ACTIONS(652), + [aux_sym_string_literal_token1] = ACTIONS(652), + [sym_char_literal] = ACTIONS(652), + [anon_sym_true] = ACTIONS(654), + [anon_sym_false] = ACTIONS(654), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), + [sym_block_comment] = ACTIONS(3), + }, [583] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1383), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_RBRACK] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_u8] = ACTIONS(2419), + [anon_sym_i8] = ACTIONS(2419), + [anon_sym_u16] = ACTIONS(2419), + [anon_sym_i16] = ACTIONS(2419), + [anon_sym_u32] = ACTIONS(2419), + [anon_sym_i32] = ACTIONS(2419), + [anon_sym_u64] = ACTIONS(2419), + [anon_sym_i64] = ACTIONS(2419), + [anon_sym_u128] = ACTIONS(2419), + [anon_sym_i128] = ACTIONS(2419), + [anon_sym_isize] = ACTIONS(2419), + [anon_sym_usize] = ACTIONS(2419), + [anon_sym_f32] = ACTIONS(2419), + [anon_sym_f64] = ACTIONS(2419), + [anon_sym_bool] = ACTIONS(2419), + [anon_sym_str] = ACTIONS(2419), + [anon_sym_char] = ACTIONS(2419), + [aux_sym__non_special_token_token1] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2419), + [anon_sym_as] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_fn] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_impl] = ACTIONS(2419), + [anon_sym_let] = ACTIONS(2419), + [anon_sym_loop] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_mod] = ACTIONS(2419), + [anon_sym_pub] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_trait] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(2419), + [anon_sym_use] = ACTIONS(2419), + [anon_sym_where] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [sym_mutable_specifier] = ACTIONS(2419), + [sym_integer_literal] = ACTIONS(2421), + [aux_sym_string_literal_token1] = ACTIONS(2421), + [sym_char_literal] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2419), + [anon_sym_false] = ACTIONS(2419), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_raw_string_literal] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2421), + [sym_block_comment] = ACTIONS(3), + }, + [584] = { + [sym_function_modifiers] = STATE(2411), + [sym_higher_ranked_trait_bound] = STATE(1560), + [sym_removed_trait_bound] = STATE(1560), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1563), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1564), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2405), [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2437), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -66474,12 +66696,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), + [anon_sym_for] = ACTIONS(2439), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -66489,7 +66711,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2407), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -66497,125 +66718,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [584] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2256), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_ref] = ACTIONS(716), + [585] = { + [sym_function_modifiers] = STATE(2411), + [sym_higher_ranked_trait_bound] = STATE(1623), + [sym_removed_trait_bound] = STATE(1623), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1624), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1626), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [585] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1851), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_union] = ACTIONS(2409), + [586] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66625,65 +66848,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2411), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [586] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1466), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [587] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66693,65 +66917,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [587] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1818), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [588] = { + [sym_function_modifiers] = STATE(2411), + [sym_higher_ranked_trait_bound] = STATE(1623), + [sym_removed_trait_bound] = STATE(1623), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1629), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1635), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [589] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66761,65 +67055,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [588] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1470), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [590] = { + [sym_function_modifiers] = STATE(2411), + [sym_higher_ranked_trait_bound] = STATE(1623), + [sym_removed_trait_bound] = STATE(1623), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1629), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1626), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [591] = { + [sym_identifier] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_RBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2349), + [anon_sym_u8] = ACTIONS(2347), + [anon_sym_i8] = ACTIONS(2347), + [anon_sym_u16] = ACTIONS(2347), + [anon_sym_i16] = ACTIONS(2347), + [anon_sym_u32] = ACTIONS(2347), + [anon_sym_i32] = ACTIONS(2347), + [anon_sym_u64] = ACTIONS(2347), + [anon_sym_i64] = ACTIONS(2347), + [anon_sym_u128] = ACTIONS(2347), + [anon_sym_i128] = ACTIONS(2347), + [anon_sym_isize] = ACTIONS(2347), + [anon_sym_usize] = ACTIONS(2347), + [anon_sym_f32] = ACTIONS(2347), + [anon_sym_f64] = ACTIONS(2347), + [anon_sym_bool] = ACTIONS(2347), + [anon_sym_str] = ACTIONS(2347), + [anon_sym_char] = ACTIONS(2347), + [aux_sym__non_special_token_token1] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_default] = ACTIONS(2347), + [anon_sym_enum] = ACTIONS(2347), + [anon_sym_fn] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_impl] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_mod] = ACTIONS(2347), + [anon_sym_pub] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_static] = ACTIONS(2347), + [anon_sym_struct] = ACTIONS(2347), + [anon_sym_trait] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2347), + [anon_sym_unsafe] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_where] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [sym_mutable_specifier] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_raw_string_literal] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), + [sym_block_comment] = ACTIONS(3), + }, + [592] = { + [sym_parameter] = STATE(2300), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(2425), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [593] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_RBRACK] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66829,65 +67331,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [589] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2154), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [594] = { + [sym_identifier] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_RBRACK] = ACTIONS(2405), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_u8] = ACTIONS(2403), + [anon_sym_i8] = ACTIONS(2403), + [anon_sym_u16] = ACTIONS(2403), + [anon_sym_i16] = ACTIONS(2403), + [anon_sym_u32] = ACTIONS(2403), + [anon_sym_i32] = ACTIONS(2403), + [anon_sym_u64] = ACTIONS(2403), + [anon_sym_i64] = ACTIONS(2403), + [anon_sym_u128] = ACTIONS(2403), + [anon_sym_i128] = ACTIONS(2403), + [anon_sym_isize] = ACTIONS(2403), + [anon_sym_usize] = ACTIONS(2403), + [anon_sym_f32] = ACTIONS(2403), + [anon_sym_f64] = ACTIONS(2403), + [anon_sym_bool] = ACTIONS(2403), + [anon_sym_str] = ACTIONS(2403), + [anon_sym_char] = ACTIONS(2403), + [aux_sym__non_special_token_token1] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_fn] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_impl] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_loop] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_mod] = ACTIONS(2403), + [anon_sym_pub] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_trait] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_unsafe] = ACTIONS(2403), + [anon_sym_use] = ACTIONS(2403), + [anon_sym_where] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [sym_mutable_specifier] = ACTIONS(2403), + [sym_integer_literal] = ACTIONS(2405), + [aux_sym_string_literal_token1] = ACTIONS(2405), + [sym_char_literal] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2403), + [anon_sym_false] = ACTIONS(2403), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2403), + [sym_super] = ACTIONS(2403), + [sym_crate] = ACTIONS(2403), + [sym_raw_string_literal] = ACTIONS(2405), + [sym_float_literal] = ACTIONS(2405), + [sym_block_comment] = ACTIONS(3), + }, + [595] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66897,65 +67469,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [590] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2175), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [596] = { + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_RPAREN] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_RBRACK] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_u8] = ACTIONS(2391), + [anon_sym_i8] = ACTIONS(2391), + [anon_sym_u16] = ACTIONS(2391), + [anon_sym_i16] = ACTIONS(2391), + [anon_sym_u32] = ACTIONS(2391), + [anon_sym_i32] = ACTIONS(2391), + [anon_sym_u64] = ACTIONS(2391), + [anon_sym_i64] = ACTIONS(2391), + [anon_sym_u128] = ACTIONS(2391), + [anon_sym_i128] = ACTIONS(2391), + [anon_sym_isize] = ACTIONS(2391), + [anon_sym_usize] = ACTIONS(2391), + [anon_sym_f32] = ACTIONS(2391), + [anon_sym_f64] = ACTIONS(2391), + [anon_sym_bool] = ACTIONS(2391), + [anon_sym_str] = ACTIONS(2391), + [anon_sym_char] = ACTIONS(2391), + [aux_sym__non_special_token_token1] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_as] = ACTIONS(2391), + [anon_sym_async] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_default] = ACTIONS(2391), + [anon_sym_enum] = ACTIONS(2391), + [anon_sym_fn] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_impl] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_mod] = ACTIONS(2391), + [anon_sym_pub] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_static] = ACTIONS(2391), + [anon_sym_struct] = ACTIONS(2391), + [anon_sym_trait] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2391), + [anon_sym_union] = ACTIONS(2391), + [anon_sym_unsafe] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_where] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [sym_mutable_specifier] = ACTIONS(2391), + [sym_integer_literal] = ACTIONS(2393), + [aux_sym_string_literal_token1] = ACTIONS(2393), + [sym_char_literal] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2391), + [sym_super] = ACTIONS(2391), + [sym_crate] = ACTIONS(2391), + [sym_raw_string_literal] = ACTIONS(2393), + [sym_float_literal] = ACTIONS(2393), + [sym_block_comment] = ACTIONS(3), + }, + [597] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1873), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(2451), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [598] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2191), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66965,41 +67674,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [591] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1383), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [599] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2453), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), @@ -67018,7 +67727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -67033,66 +67742,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2413), + [sym_mutable_specifier] = ACTIONS(2455), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2415), + [sym_self] = ACTIONS(2457), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [592] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1467), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [600] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2459), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [601] = { + [sym_function_modifiers] = STATE(2376), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1059), + [sym_bracketed_type] = STATE(2479), + [sym_lifetime] = STATE(2470), + [sym_array_type] = STATE(1075), + [sym_for_lifetimes] = STATE(1207), + [sym_function_type] = STATE(1075), + [sym_tuple_type] = STATE(1075), + [sym_unit_type] = STATE(1075), + [sym_generic_type] = STATE(1007), + [sym_generic_type_with_turbofish] = STATE(2480), + [sym_bounded_type] = STATE(1075), + [sym_reference_type] = STATE(1075), + [sym_pointer_type] = STATE(1075), + [sym_empty_type] = STATE(1075), + [sym_abstract_type] = STATE(1075), + [sym_dynamic_type] = STATE(1075), + [sym_macro_invocation] = STATE(1075), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(2471), + [anon_sym_i8] = ACTIONS(2471), + [anon_sym_u16] = ACTIONS(2471), + [anon_sym_i16] = ACTIONS(2471), + [anon_sym_u32] = ACTIONS(2471), + [anon_sym_i32] = ACTIONS(2471), + [anon_sym_u64] = ACTIONS(2471), + [anon_sym_i64] = ACTIONS(2471), + [anon_sym_u128] = ACTIONS(2471), + [anon_sym_i128] = ACTIONS(2471), + [anon_sym_isize] = ACTIONS(2471), + [anon_sym_usize] = ACTIONS(2471), + [anon_sym_f32] = ACTIONS(2471), + [anon_sym_f64] = ACTIONS(2471), + [anon_sym_bool] = ACTIONS(2471), + [anon_sym_str] = ACTIONS(2471), + [anon_sym_char] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2477), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2483), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_dyn] = ACTIONS(2487), + [sym_mutable_specifier] = ACTIONS(2489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2491), + [sym_super] = ACTIONS(2491), + [sym_crate] = ACTIONS(2491), + [sym_metavariable] = ACTIONS(2493), + [sym_block_comment] = ACTIONS(3), + }, + [602] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2229), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -67101,65 +67946,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [593] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1842), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [603] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1796), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67169,134 +68014,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [594] = { - [sym_attribute_item] = STATE(594), - [aux_sym_enum_variant_list_repeat1] = STATE(594), - [sym_identifier] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_RBRACK] = ACTIONS(2421), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_u8] = ACTIONS(2419), - [anon_sym_i8] = ACTIONS(2419), - [anon_sym_u16] = ACTIONS(2419), - [anon_sym_i16] = ACTIONS(2419), - [anon_sym_u32] = ACTIONS(2419), - [anon_sym_i32] = ACTIONS(2419), - [anon_sym_u64] = ACTIONS(2419), - [anon_sym_i64] = ACTIONS(2419), - [anon_sym_u128] = ACTIONS(2419), - [anon_sym_i128] = ACTIONS(2419), - [anon_sym_isize] = ACTIONS(2419), - [anon_sym_usize] = ACTIONS(2419), - [anon_sym_f32] = ACTIONS(2419), - [anon_sym_f64] = ACTIONS(2419), - [anon_sym_bool] = ACTIONS(2419), - [anon_sym_str] = ACTIONS(2419), - [anon_sym_char] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_default] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_loop] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_union] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2421), - [anon_sym_COMMA] = ACTIONS(2421), - [anon_sym_ref] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2421), - [anon_sym__] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2421), - [sym_mutable_specifier] = ACTIONS(2419), - [anon_sym_DOT_DOT] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2419), - [anon_sym_move] = ACTIONS(2419), - [sym_integer_literal] = ACTIONS(2421), - [aux_sym_string_literal_token1] = ACTIONS(2421), - [sym_char_literal] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2419), - [anon_sym_false] = ACTIONS(2419), + [604] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1979), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2419), - [sym_super] = ACTIONS(2419), - [sym_crate] = ACTIONS(2419), - [sym_metavariable] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2421), - [sym_float_literal] = ACTIONS(2421), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [595] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1838), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [605] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2247), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -67305,65 +68150,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [596] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1909), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [606] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2179), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67373,65 +68218,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [597] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1462), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [607] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2181), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67441,65 +68286,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [598] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1438), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [608] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2199), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67509,65 +68354,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [599] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2148), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [609] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1848), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67577,65 +68422,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(2497), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [600] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2018), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [610] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67645,65 +68490,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [601] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2181), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [611] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2193), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67713,65 +68558,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [602] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2192), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [612] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1489), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67781,65 +68626,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [603] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [613] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1471), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67849,65 +68694,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [604] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2222), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [614] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67917,65 +68762,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [605] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2212), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [615] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67985,134 +68830,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [606] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2183), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2428), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [607] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1851), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_union] = ACTIONS(2409), + [616] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(2499), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -68121,65 +68898,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2430), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [608] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2245), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [617] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1481), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68189,65 +68966,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [609] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2149), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [618] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2284), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68257,65 +69034,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [610] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [619] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1826), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68325,66 +69102,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [611] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(2145), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [620] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1816), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), - [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -68393,65 +69170,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [612] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1901), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [621] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2085), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68461,65 +69238,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [613] = { - [sym_bracketed_type] = STATE(2420), - [sym_generic_type] = STATE(2417), - [sym_generic_type_with_turbofish] = STATE(2406), - [sym_scoped_identifier] = STATE(1348), - [sym_scoped_type_identifier] = STATE(1913), - [sym_const_block] = STATE(1451), - [sym__pattern] = STATE(1828), - [sym_tuple_pattern] = STATE(1451), - [sym_slice_pattern] = STATE(1451), - [sym_tuple_struct_pattern] = STATE(1451), - [sym_struct_pattern] = STATE(1451), - [sym_remaining_field_pattern] = STATE(1451), - [sym_mut_pattern] = STATE(1451), - [sym_range_pattern] = STATE(1451), - [sym_ref_pattern] = STATE(1451), - [sym_captured_pattern] = STATE(1451), - [sym_reference_pattern] = STATE(1451), - [sym_or_pattern] = STATE(1451), - [sym__literal_pattern] = STATE(1395), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), + [622] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2185), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68529,41 +69306,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1218), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [614] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1955), - [sym_bracketed_type] = STATE(2347), - [sym_qualified_type] = STATE(2328), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [623] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2297), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(2453), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), @@ -68582,7 +69359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68597,6 +69374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2503), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -68604,835 +69382,710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [615] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1802), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [624] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2226), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [616] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2121), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [625] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2190), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [617] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1831), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [626] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [618] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2134), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(606), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [627] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2184), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [619] = { - [sym_function_modifiers] = STATE(2353), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1116), - [sym_bracketed_type] = STATE(2456), - [sym_lifetime] = STATE(581), - [sym_array_type] = STATE(1091), - [sym_for_lifetimes] = STATE(1182), - [sym_function_type] = STATE(1091), - [sym_tuple_type] = STATE(1091), - [sym_unit_type] = STATE(1091), - [sym_generic_type] = STATE(808), - [sym_generic_type_with_turbofish] = STATE(2457), - [sym_bounded_type] = STATE(1091), - [sym_reference_type] = STATE(1091), - [sym_pointer_type] = STATE(1091), - [sym_empty_type] = STATE(1091), - [sym_abstract_type] = STATE(1091), - [sym_dynamic_type] = STATE(1091), - [sym_macro_invocation] = STATE(1091), - [sym_scoped_identifier] = STATE(2295), - [sym_scoped_type_identifier] = STATE(753), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_STAR] = ACTIONS(2379), - [anon_sym_u8] = ACTIONS(2381), - [anon_sym_i8] = ACTIONS(2381), - [anon_sym_u16] = ACTIONS(2381), - [anon_sym_i16] = ACTIONS(2381), - [anon_sym_u32] = ACTIONS(2381), - [anon_sym_i32] = ACTIONS(2381), - [anon_sym_u64] = ACTIONS(2381), - [anon_sym_i64] = ACTIONS(2381), - [anon_sym_u128] = ACTIONS(2381), - [anon_sym_i128] = ACTIONS(2381), - [anon_sym_isize] = ACTIONS(2381), - [anon_sym_usize] = ACTIONS(2381), - [anon_sym_f32] = ACTIONS(2381), - [anon_sym_f64] = ACTIONS(2381), - [anon_sym_bool] = ACTIONS(2381), - [anon_sym_str] = ACTIONS(2381), - [anon_sym_char] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2383), - [anon_sym_fn] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2389), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_extern] = ACTIONS(714), + [628] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1487), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_dyn] = ACTIONS(2397), - [sym_mutable_specifier] = ACTIONS(2442), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2401), - [sym_super] = ACTIONS(2401), - [sym_crate] = ACTIONS(2401), - [sym_metavariable] = ACTIONS(2403), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [620] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2121), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [629] = { + [sym_attribute_item] = STATE(629), + [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_identifier] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_RBRACK] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_u8] = ACTIONS(2505), + [anon_sym_i8] = ACTIONS(2505), + [anon_sym_u16] = ACTIONS(2505), + [anon_sym_i16] = ACTIONS(2505), + [anon_sym_u32] = ACTIONS(2505), + [anon_sym_i32] = ACTIONS(2505), + [anon_sym_u64] = ACTIONS(2505), + [anon_sym_i64] = ACTIONS(2505), + [anon_sym_u128] = ACTIONS(2505), + [anon_sym_i128] = ACTIONS(2505), + [anon_sym_isize] = ACTIONS(2505), + [anon_sym_usize] = ACTIONS(2505), + [anon_sym_f32] = ACTIONS(2505), + [anon_sym_f64] = ACTIONS(2505), + [anon_sym_bool] = ACTIONS(2505), + [anon_sym_str] = ACTIONS(2505), + [anon_sym_char] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_default] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_loop] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_union] = ACTIONS(2505), + [anon_sym_unsafe] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_COMMA] = ACTIONS(2507), + [anon_sym_ref] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2507), + [anon_sym__] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2507), + [sym_mutable_specifier] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_move] = ACTIONS(2505), + [sym_integer_literal] = ACTIONS(2507), + [aux_sym_string_literal_token1] = ACTIONS(2507), + [sym_char_literal] = ACTIONS(2507), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2505), + [sym_super] = ACTIONS(2505), + [sym_crate] = ACTIONS(2505), + [sym_metavariable] = ACTIONS(2507), + [sym_raw_string_literal] = ACTIONS(2507), + [sym_float_literal] = ACTIONS(2507), + [sym_block_comment] = ACTIONS(3), + }, + [630] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1848), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [621] = { - [sym_function_modifiers] = STATE(2404), - [sym_type_parameters] = STATE(666), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1646), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1642), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1515), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2446), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(2512), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [622] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1391), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(583), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [631] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2210), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2450), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [623] = { - [sym_function_modifiers] = STATE(2404), - [sym_type_parameters] = STATE(634), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1664), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1684), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1516), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [624] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2121), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [632] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2275), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [625] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(2121), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1370), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [633] = { + [sym_function_modifiers] = STATE(2376), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1110), + [sym_bracketed_type] = STATE(2479), + [sym_lifetime] = STATE(601), + [sym_array_type] = STATE(1075), + [sym_for_lifetimes] = STATE(1207), + [sym_function_type] = STATE(1075), + [sym_tuple_type] = STATE(1075), + [sym_unit_type] = STATE(1075), + [sym_generic_type] = STATE(1007), + [sym_generic_type_with_turbofish] = STATE(2480), + [sym_bounded_type] = STATE(1075), + [sym_reference_type] = STATE(1075), + [sym_pointer_type] = STATE(1075), + [sym_empty_type] = STATE(1075), + [sym_abstract_type] = STATE(1075), + [sym_dynamic_type] = STATE(1075), + [sym_macro_invocation] = STATE(1075), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(2471), + [anon_sym_i8] = ACTIONS(2471), + [anon_sym_u16] = ACTIONS(2471), + [anon_sym_i16] = ACTIONS(2471), + [anon_sym_u32] = ACTIONS(2471), + [anon_sym_i32] = ACTIONS(2471), + [anon_sym_u64] = ACTIONS(2471), + [anon_sym_i64] = ACTIONS(2471), + [anon_sym_u128] = ACTIONS(2471), + [anon_sym_i128] = ACTIONS(2471), + [anon_sym_isize] = ACTIONS(2471), + [anon_sym_usize] = ACTIONS(2471), + [anon_sym_f32] = ACTIONS(2471), + [anon_sym_f64] = ACTIONS(2471), + [anon_sym_bool] = ACTIONS(2471), + [anon_sym_str] = ACTIONS(2471), + [anon_sym_char] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2514), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_fn] = ACTIONS(2475), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_impl] = ACTIONS(2477), + [anon_sym_union] = ACTIONS(2479), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [626] = { - [sym_function_modifiers] = STATE(2404), - [sym_type_parameters] = STATE(691), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1627), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1628), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1518), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [627] = { - [sym_function_modifiers] = STATE(2404), - [sym_type_parameters] = STATE(636), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1621), - [sym_bracketed_type] = STATE(2347), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(1392), - [sym_for_lifetimes] = STATE(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [sym_generic_type] = STATE(1630), - [sym_generic_type_with_turbofish] = STATE(2348), - [sym_bounded_type] = STATE(1392), - [sym_reference_type] = STATE(1392), - [sym_pointer_type] = STATE(1392), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [sym_scoped_identifier] = STATE(2280), - [sym_scoped_type_identifier] = STATE(1522), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2460), + [anon_sym_COLON_COLON] = ACTIONS(2483), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_dyn] = ACTIONS(2487), + [sym_mutable_specifier] = ACTIONS(2516), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2491), + [sym_super] = ACTIONS(2491), + [sym_crate] = ACTIONS(2491), + [sym_metavariable] = ACTIONS(2493), + [sym_block_comment] = ACTIONS(3), + }, + [634] = { + [sym_function_modifiers] = STATE(2411), + [sym_type_parameters] = STATE(662), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1701), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1705), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1538), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2518), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69453,7 +70106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69462,897 +70115,827 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1885), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(892), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [129] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1678), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(892), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [258] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2172), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(892), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [387] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1044), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2381), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [516] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1670), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(892), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [645] = 33, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2462), 1, - sym_self, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1394), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(906), 2, - sym_super, - sym_crate, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - STATE(1392), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(892), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [776] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1490), 1, - sym_scoped_type_identifier, - STATE(1665), 1, - sym_generic_type, - STATE(1666), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(892), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [905] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1900), 1, - sym__type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(892), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1034] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2466), 1, - sym_identifier, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1523), 1, - sym_scoped_type_identifier, - STATE(1617), 1, - sym__type, - STATE(1623), 1, - sym_generic_type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(892), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1163] = 32, + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [635] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1800), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [636] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1939), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [637] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2306), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(623), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2526), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [638] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1939), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [639] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1939), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [640] = { + [sym_function_modifiers] = STATE(2411), + [sym_type_parameters] = STATE(657), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1664), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1670), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1524), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [641] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2068), + [sym_bracketed_type] = STATE(2370), + [sym_qualified_type] = STATE(2346), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [642] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1784), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [643] = { + [sym_function_modifiers] = STATE(2411), + [sym_type_parameters] = STATE(692), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1711), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1641), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [644] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(600), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [645] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1939), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, + [646] = { + [sym_function_modifiers] = STATE(2411), + [sym_type_parameters] = STATE(665), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1648), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1543), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_crate] = ACTIONS(906), + [sym_metavariable] = ACTIONS(908), + [sym_block_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70383,32 +70966,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1393), 1, + STATE(2143), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70419,7 +71002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70449,7 +71032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1292] = 32, + [129] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70480,32 +71063,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1890), 1, + STATE(2120), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70516,7 +71099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70546,7 +71129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1421] = 32, + [258] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70577,32 +71160,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1945), 1, + STATE(1717), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70613,7 +71196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70643,7 +71226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1550] = 32, + [387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70674,32 +71257,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1986), 1, + STATE(2150), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70710,7 +71293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70740,7 +71323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1679] = 32, + [516] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70771,32 +71354,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2162), 1, + STATE(1401), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70807,7 +71390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70837,7 +71420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1808] = 32, + [645] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70868,32 +71451,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1778), 1, + STATE(1658), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70904,7 +71487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70934,7 +71517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1937] = 32, + [774] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70965,32 +71548,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2087), 1, + STATE(1395), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71001,7 +71584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71031,7 +71614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2066] = 32, + [903] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71062,32 +71645,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2120), 1, + STATE(1651), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71098,7 +71681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71128,7 +71711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2195] = 32, + [1032] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71159,32 +71742,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1954), 1, + STATE(1659), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71195,7 +71778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71225,7 +71808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2324] = 32, + [1161] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71256,32 +71839,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2003), 1, + STATE(2187), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71292,7 +71875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71322,7 +71905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2453] = 32, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71353,32 +71936,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + ACTIONS(2544), 1, + sym_identifier, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1539), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1724), 1, sym_generic_type, - STATE(1654), 1, + STATE(1725), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71389,7 +71972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71419,7 +72002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2582] = 32, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71450,32 +72033,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1649), 1, + STATE(2089), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71486,7 +72069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71516,7 +72099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2711] = 32, + [1548] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71547,32 +72130,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1394), 1, + STATE(1405), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71583,7 +72166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71613,7 +72196,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2840] = 32, + [1677] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_default, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, + anon_sym_union, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, + anon_sym_COLON_COLON, + ACTIONS(2485), 1, + anon_sym_AMP, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1112), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2471), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [1806] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71644,32 +72324,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1400), 1, + STATE(1896), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71680,7 +72360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71710,7 +72390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2969] = 32, + [1935] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71741,32 +72421,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + ACTIONS(2546), 1, + sym_identifier, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1517), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1709), 1, sym_generic_type, - STATE(1626), 1, + STATE(1712), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71777,7 +72457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71807,7 +72487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3098] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71838,32 +72518,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2046), 1, + STATE(2000), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71874,7 +72554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71904,7 +72584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3227] = 32, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71935,32 +72615,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1809), 1, + STATE(1661), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71971,7 +72651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72001,7 +72681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3356] = 32, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72032,32 +72712,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + ACTIONS(2548), 1, + sym_identifier, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1546), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1653), 1, sym_generic_type, - STATE(1928), 1, + STATE(1691), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72068,7 +72748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72098,7 +72778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3485] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72129,32 +72809,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1625), 1, + STATE(2298), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72165,7 +72845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72195,7 +72875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3614] = 32, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72226,32 +72906,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1811), 1, + STATE(1928), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72262,7 +72942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72292,7 +72972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3743] = 32, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72323,32 +73003,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1841), 1, + STATE(2297), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72359,7 +73039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72389,7 +73069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3872] = 32, + [2838] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72420,32 +73100,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1402), 1, + STATE(1815), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72456,7 +73136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72486,7 +73166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4001] = 32, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72517,32 +73197,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1398), 1, + STATE(1419), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72553,7 +73233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72583,7 +73263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4130] = 32, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72614,32 +73294,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1399), 1, + STATE(1424), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72650,7 +73330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72680,7 +73360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4259] = 32, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72711,32 +73391,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1840), 1, + STATE(1713), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72747,7 +73427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72777,7 +73457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4388] = 32, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72808,32 +73488,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2016), 1, + STATE(2301), 1, + sym_scoped_identifier, + STATE(2310), 1, + sym__type, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(1410), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(892), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [3483] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_default, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, + anon_sym_union, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, + anon_sym_COLON_COLON, + ACTIONS(2485), 1, + anon_sym_AMP, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1058), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2471), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [3612] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, + anon_sym_LPAREN, + ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, + anon_sym_default, + ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(902), 1, + anon_sym_AMP, + ACTIONS(908), 1, + sym_metavariable, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, + sym_scoped_type_identifier, + STATE(1375), 1, + sym_generic_type, + STATE(1400), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72844,7 +73718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72874,7 +73748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4517] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72905,32 +73779,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2074), 1, + STATE(1420), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72941,7 +73815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72971,172 +73845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4646] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1174), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1176), 42, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4717] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, - anon_sym_COLON_COLON, - ACTIONS(2395), 1, - anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, - sym_metavariable, - STATE(753), 1, - sym_scoped_type_identifier, - STATE(808), 1, - sym_generic_type, - STATE(1080), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, - sym_self, - sym_super, - sym_crate, - STATE(1091), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2381), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [4846] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73167,32 +73876,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2468), 1, + ACTIONS(2315), 1, sym_identifier, - STATE(1188), 1, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, sym_for_lifetimes, - STATE(1519), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1624), 1, - sym__type, - STATE(1635), 1, + STATE(1375), 1, sym_generic_type, - STATE(2280), 1, + STATE(1726), 1, + sym__type, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73203,7 +73912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73233,7 +73942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4975] = 32, + [3999] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73264,32 +73973,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2309), 1, + STATE(2021), 1, sym__type, - STATE(2347), 1, + STATE(2301), 1, + sym_scoped_identifier, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73300,7 +74009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73330,7 +74039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5104] = 32, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73361,32 +74070,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1396), 1, + STATE(2075), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73397,7 +74106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73427,7 +74136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5233] = 32, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73458,32 +74167,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1999), 1, + STATE(1884), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73494,7 +74203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73524,7 +74233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5362] = 32, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73555,32 +74264,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1674), 1, + STATE(1964), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73591,7 +74300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73621,7 +74330,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5491] = 32, + [4515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1272), 20, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1274), 42, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4586] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73652,32 +74429,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2106), 1, + STATE(1997), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73688,7 +74465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73718,7 +74495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5620] = 32, + [4715] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73749,32 +74526,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1971), 1, + STATE(2102), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73785,7 +74562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73815,7 +74592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5749] = 32, + [4844] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73846,32 +74623,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2075), 1, + STATE(1804), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73882,7 +74659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73912,7 +74689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5878] = 32, + [4973] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73943,32 +74720,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1618), 1, + STATE(2236), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73979,7 +74756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74009,7 +74786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6007] = 32, + [5102] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74040,32 +74817,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1401), 1, - sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2302), 1, + sym__type, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74076,7 +74853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74106,74 +74883,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6136] = 32, + [5231] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1007), 1, sym_generic_type, - STATE(1698), 1, + STATE(1100), 1, sym__type, - STATE(2280), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74185,7 +74962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74203,7 +74980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6265] = 32, + [5360] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74234,32 +75011,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1868), 1, + STATE(1882), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74270,7 +75047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74300,7 +75077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6394] = 32, + [5489] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74331,32 +75108,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1888), 1, + STATE(1875), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74367,7 +75144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74397,7 +75174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6523] = 32, + [5618] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74428,32 +75205,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2105), 1, + STATE(1678), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74464,7 +75241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74494,7 +75271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6652] = 32, + [5747] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74525,32 +75302,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + ACTIONS(2550), 1, + sym_identifier, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1529), 1, sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2121), 1, + STATE(1647), 1, sym__type, - STATE(2280), 1, + STATE(1694), 1, + sym_generic_type, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74561,7 +75338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74591,74 +75368,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6781] = 32, + [5876] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1007), 1, sym_generic_type, - STATE(2030), 1, + STATE(1099), 1, sym__type, - STATE(2280), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74670,7 +75447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74688,7 +75465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6910] = 32, + [6005] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74719,32 +75496,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2012), 1, + STATE(2059), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74755,7 +75532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74785,74 +75562,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7039] = 32, + [6134] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1375), 1, sym_generic_type, - STATE(1109), 1, + STATE(1679), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74864,7 +75641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74882,74 +75659,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7168] = 32, + [6263] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1375), 1, sym_generic_type, - STATE(1125), 1, + STATE(1879), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74961,7 +75738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74979,74 +75756,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7297] = 32, + [6392] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1375), 1, sym_generic_type, - STATE(1124), 1, + STATE(1695), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75058,7 +75835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75076,7 +75853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7426] = 32, + [6521] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75107,32 +75884,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1847), 1, + STATE(1939), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75143,7 +75920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75173,7 +75950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7555] = 32, + [6650] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75204,32 +75981,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2156), 1, + STATE(1981), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75240,7 +76017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75270,74 +76047,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7684] = 32, + [6779] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1007), 1, sym_generic_type, - STATE(1865), 1, + STATE(1095), 1, sym__type, - STATE(2280), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75349,7 +76126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75367,7 +76144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7813] = 32, + [6908] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75398,32 +76175,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1677), 1, + STATE(1601), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75434,7 +76211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75464,7 +76241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7942] = 32, + [7037] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75495,32 +76272,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2180), 1, + STATE(2171), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75531,7 +76308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75561,7 +76338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8071] = 32, + [7166] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75592,32 +76369,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2470), 1, + ACTIONS(2315), 1, sym_identifier, - STATE(1188), 1, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, sym_for_lifetimes, - STATE(1498), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1650), 1, - sym__type, - STATE(1651), 1, + STATE(1375), 1, sym_generic_type, - STATE(2280), 1, + STATE(2288), 1, + sym__type, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75628,7 +76405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75658,7 +76435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8200] = 32, + [7295] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75689,32 +76466,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2183), 1, + STATE(1681), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75725,7 +76502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75755,7 +76532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8329] = 32, + [7424] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75786,32 +76563,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1699), 1, + STATE(2138), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75822,7 +76599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75852,7 +76629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8458] = 32, + [7553] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75883,32 +76660,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1689), 1, + STATE(1418), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75919,7 +76696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75949,7 +76726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8587] = 32, + [7682] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75980,32 +76757,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2208), 1, + STATE(1415), 1, + sym_lifetime, + STATE(1418), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76016,7 +76793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76046,74 +76823,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8716] = 32, + [7811] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1375), 1, sym_generic_type, - STATE(1104), 1, + STATE(1640), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76125,7 +76902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76143,7 +76920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8845] = 32, + [7940] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76174,32 +76951,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1672), 1, + STATE(1727), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76210,7 +76987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76240,7 +77017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8974] = 32, + [8069] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76271,32 +77048,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1914), 1, + STATE(1627), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76307,7 +77084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76337,74 +77114,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9103] = 32, + [8198] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, + ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(902), 1, + anon_sym_AMP, + ACTIONS(908), 1, + sym_metavariable, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, + sym_scoped_type_identifier, + STATE(1375), 1, + sym_generic_type, + STATE(1685), 1, + sym__type, + STATE(2301), 1, + sym_scoped_identifier, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(1410), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(892), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [8327] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(2387), 1, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(2389), 1, - anon_sym_union, - ACTIONS(2391), 1, + ACTIONS(710), 1, anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, + anon_sym_LPAREN, + ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, + anon_sym_default, + ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1375), 1, sym_generic_type, - STATE(1067), 1, + STATE(1956), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2325), 1, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2409), 1, sym_lifetime, - STATE(2353), 1, + STATE(2411), 1, sym_function_modifiers, - STATE(2456), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(1410), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(892), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [8456] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, + anon_sym_LPAREN, + ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, + anon_sym_default, + ACTIONS(896), 1, + anon_sym_union, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(902), 1, + anon_sym_AMP, + ACTIONS(908), 1, + sym_metavariable, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, + sym_scoped_type_identifier, + STATE(1375), 1, + sym_generic_type, + STATE(2132), 1, + sym__type, + STATE(2301), 1, + sym_scoped_identifier, + STATE(2370), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76416,7 +77387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76434,74 +77405,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9232] = 32, + [8585] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2371), 1, + ACTIONS(2461), 1, sym_identifier, - ACTIONS(2373), 1, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, + ACTIONS(2469), 1, anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(2385), 1, + ACTIONS(2475), 1, anon_sym_fn, - ACTIONS(2387), 1, + ACTIONS(2477), 1, anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(2391), 1, + ACTIONS(2481), 1, anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(2397), 1, + ACTIONS(2487), 1, anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(2493), 1, sym_metavariable, - STATE(753), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1007), 1, sym_generic_type, - STATE(1031), 1, + STATE(1059), 1, sym__type, - STATE(1182), 1, + STATE(1207), 1, sym_for_lifetimes, - STATE(2295), 1, + STATE(2318), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, + STATE(2376), 1, sym_function_modifiers, - STATE(2456), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76513,7 +77484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76531,7 +77502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9361] = 32, + [8714] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76562,32 +77533,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2092), 1, + STATE(2261), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76598,7 +77569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76628,7 +77599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9490] = 32, + [8843] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76659,32 +77630,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1603), 1, + STATE(1900), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76695,7 +77666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76725,7 +77696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9619] = 32, + [8972] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76756,32 +77727,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1693), 1, + STATE(1894), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76792,7 +77763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76822,74 +77793,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9748] = 32, + [9101] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1375), 1, sym_generic_type, - STATE(1049), 1, + STATE(1394), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76901,7 +77872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76919,7 +77890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9877] = 32, + [9230] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76950,32 +77921,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2141), 1, + STATE(1708), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76986,7 +77957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77016,7 +77987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10006] = 32, + [9359] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77047,32 +78018,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1643), 1, + STATE(1680), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77083,7 +78054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77113,7 +78084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10135] = 32, + [9488] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77144,32 +78115,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1925), 1, + STATE(1784), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77180,7 +78151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77210,7 +78181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10264] = 32, + [9617] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77241,32 +78212,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2203), 1, + STATE(2108), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77277,7 +78248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77307,7 +78278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 32, + [9746] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77338,32 +78309,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2041), 1, + STATE(2061), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77374,7 +78345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77404,7 +78375,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 32, + [9875] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_default, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, + anon_sym_union, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, + anon_sym_COLON_COLON, + ACTIONS(2485), 1, + anon_sym_AMP, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1109), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2471), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [10004] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77435,32 +78503,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1685), 1, + STATE(1409), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77471,7 +78539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77501,74 +78569,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10651] = 32, + [10133] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1375), 1, sym_generic_type, - STATE(1038), 1, + STATE(1649), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77580,7 +78648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77598,7 +78666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10780] = 32, + [10262] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77629,43 +78697,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + ACTIONS(2552), 1, + sym_self, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1644), 1, + STATE(1401), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + ACTIONS(906), 2, + sym_super, + sym_crate, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77695,7 +78764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10909] = 32, + [10393] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77726,32 +78795,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2213), 1, + STATE(1683), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77762,7 +78831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77792,7 +78861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11038] = 32, + [10522] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77823,32 +78892,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1802), 1, + STATE(1660), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77859,7 +78928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77889,7 +78958,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11167] = 32, + [10651] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_default, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, + anon_sym_union, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, + anon_sym_COLON_COLON, + ACTIONS(2485), 1, + anon_sym_AMP, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1060), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2471), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [10780] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77920,32 +79086,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1376), 1, + STATE(1646), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77956,7 +79122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77986,7 +79152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11296] = 32, + [10909] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78017,32 +79183,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2214), 1, + STATE(1412), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78053,7 +79219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78083,7 +79249,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11425] = 32, + [11038] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_default, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, + anon_sym_union, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, + anon_sym_COLON_COLON, + ACTIONS(2485), 1, + anon_sym_AMP, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1103), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2471), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [11167] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78114,32 +79377,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1690), 1, + STATE(2090), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78150,7 +79413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78180,6 +79443,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [11296] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_default, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, + anon_sym_union, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, + anon_sym_COLON_COLON, + ACTIONS(2485), 1, + anon_sym_AMP, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1098), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2471), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [11425] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_default, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, + anon_sym_union, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, + anon_sym_COLON_COLON, + ACTIONS(2485), 1, + anon_sym_AMP, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1101), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2471), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, [11554] = 32, ACTIONS(77), 1, anon_sym_LT, @@ -78211,32 +79668,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1376), 1, + STATE(2221), 1, sym__type, - STATE(1387), 1, - sym_lifetime, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2404), 1, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78247,7 +79704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78308,32 +79765,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1582), 1, + STATE(1657), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78344,7 +79801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78405,32 +79862,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1694), 1, + STATE(2223), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78441,7 +79898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78502,32 +79959,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1634), 1, + STATE(2101), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78538,7 +79995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78599,32 +80056,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2273), 1, + STATE(1674), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78635,7 +80092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78696,32 +80153,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1631), 1, + STATE(2056), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78732,7 +80189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78793,32 +80250,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2079), 1, + STATE(1675), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78829,7 +80286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78862,71 +80319,71 @@ static const uint16_t ts_small_parse_table[] = { [12457] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1375), 1, sym_generic_type, - STATE(1040), 1, + STATE(2094), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78938,7 +80395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78987,32 +80444,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1655), 1, + STATE(2197), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79023,7 +80480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79084,32 +80541,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1638), 1, + STATE(2037), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79120,7 +80577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79181,32 +80638,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1380), 1, + STATE(2137), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79217,7 +80674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79278,32 +80735,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1640), 1, + STATE(1854), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79314,7 +80771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79375,32 +80832,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1383), 1, + STATE(1856), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79411,7 +80868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79472,32 +80929,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(2205), 1, + STATE(1676), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79508,7 +80965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79569,32 +81026,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1682), 1, + STATE(1723), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79605,7 +81062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79666,32 +81123,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1695), 1, + STATE(1895), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79702,7 +81159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79763,32 +81220,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1691), 1, + STATE(1722), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79799,7 +81256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79860,32 +81317,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1877), 1, + STATE(1637), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79896,7 +81353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79957,32 +81414,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1375), 1, sym_generic_type, - STATE(1656), 1, + STATE(1673), 1, sym__type, - STATE(2280), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2409), 1, sym_lifetime, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79993,7 +81450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80030,67 +81487,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2371), 1, + ACTIONS(2461), 1, sym_identifier, - ACTIONS(2373), 1, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, + ACTIONS(2469), 1, anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(2385), 1, + ACTIONS(2475), 1, anon_sym_fn, - ACTIONS(2387), 1, + ACTIONS(2477), 1, anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(2391), 1, + ACTIONS(2481), 1, anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(2397), 1, + ACTIONS(2487), 1, anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(2493), 1, sym_metavariable, - STATE(753), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1007), 1, sym_generic_type, - STATE(1065), 1, + STATE(1062), 1, sym__type, - STATE(1182), 1, + STATE(1207), 1, sym_for_lifetimes, - STATE(2295), 1, + STATE(2318), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, + STATE(2376), 1, sym_function_modifiers, - STATE(2456), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80102,7 +81559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80124,7 +81581,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 17, + ACTIONS(2556), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -80142,7 +81599,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2472), 40, + ACTIONS(2554), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80250,7 +81707,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 17, + ACTIONS(406), 18, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2558), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14332] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2562), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -80268,7 +81788,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2476), 40, + ACTIONS(2560), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80309,74 +81829,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14332] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(396), 18, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2480), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, [14398] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 15, + ACTIONS(1272), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -80392,7 +81849,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1274), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80432,22 +81889,22 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [14460] = 9, - ACTIONS(2484), 1, + ACTIONS(2566), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(2570), 1, anon_sym_BANG, - ACTIONS(2490), 1, + ACTIONS(2572), 1, anon_sym_COLON_COLON, - ACTIONS(2492), 1, + ACTIONS(2574), 1, anon_sym_LT2, - STATE(851), 1, + STATE(813), 1, sym_type_arguments, - STATE(884), 1, + STATE(858), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2486), 17, + ACTIONS(2568), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80465,7 +81922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2482), 26, + ACTIONS(2564), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80493,20 +81950,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14530] = 8, - ACTIONS(2484), 1, + ACTIONS(2566), 1, anon_sym_LPAREN, - ACTIONS(2490), 1, + ACTIONS(2572), 1, anon_sym_COLON_COLON, - ACTIONS(2492), 1, + ACTIONS(2574), 1, anon_sym_LT2, - STATE(851), 1, + STATE(813), 1, sym_type_arguments, - STATE(884), 1, + STATE(858), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2496), 17, + ACTIONS(2578), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80524,7 +81981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2494), 26, + ACTIONS(2576), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80552,20 +82009,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14597] = 8, - ACTIONS(2484), 1, + ACTIONS(2566), 1, anon_sym_LPAREN, - ACTIONS(2490), 1, + ACTIONS(2572), 1, anon_sym_COLON_COLON, - ACTIONS(2492), 1, + ACTIONS(2574), 1, anon_sym_LT2, - STATE(851), 1, + STATE(813), 1, sym_type_arguments, - STATE(884), 1, + STATE(858), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2500), 17, + ACTIONS(2582), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80583,7 +82040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2498), 26, + ACTIONS(2580), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80614,7 +82071,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1872), 9, + ACTIONS(1408), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80624,7 +82081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1874), 38, + ACTIONS(1410), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80664,18 +82121,18 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [14720] = 7, - ACTIONS(2484), 1, + ACTIONS(2566), 1, anon_sym_LPAREN, - ACTIONS(2492), 1, + ACTIONS(2574), 1, anon_sym_LT2, - STATE(855), 1, + STATE(814), 1, sym_type_arguments, - STATE(907), 1, + STATE(866), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 17, + ACTIONS(2586), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80693,7 +82150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2502), 26, + ACTIONS(2584), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80720,21 +82177,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14784] = 7, - ACTIONS(2484), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_LT2, - STATE(855), 1, - sym_type_arguments, - STATE(907), 1, - sym_parameters, + [14784] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1716), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1718), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14840] = 6, + ACTIONS(2594), 1, + anon_sym_BANG, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 17, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2590), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80743,30 +82257,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2506), 26, + ACTIONS(2588), 23, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -80776,16 +82284,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14848] = 5, - ACTIONS(2514), 1, + [14902] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1328), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1330), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14958] = 5, + ACTIONS(2602), 1, anon_sym_BANG, - ACTIONS(2516), 1, + ACTIONS(2604), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2512), 17, + ACTIONS(2600), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80803,7 +82365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2510), 28, + ACTIONS(2598), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80832,15 +82394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14908] = 5, - ACTIONS(2522), 1, - anon_sym_BANG, - ACTIONS(2524), 1, - anon_sym_COLON_COLON, + [15018] = 7, + ACTIONS(2566), 1, + anon_sym_LPAREN, + ACTIONS(2574), 1, + anon_sym_LT2, + STATE(814), 1, + sym_type_arguments, + STATE(866), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2520), 17, + ACTIONS(2608), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80858,9 +82424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2518), 28, + ACTIONS(2606), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -80871,7 +82436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80887,15 +82451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14968] = 5, - ACTIONS(2530), 1, + [15082] = 5, + ACTIONS(2614), 1, anon_sym_BANG, - ACTIONS(2532), 1, + ACTIONS(2616), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2528), 17, + ACTIONS(2612), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80913,7 +82477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2526), 28, + ACTIONS(2610), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80942,75 +82506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15028] = 6, - ACTIONS(2540), 1, + [15142] = 5, + ACTIONS(2622), 1, anon_sym_BANG, - ACTIONS(2542), 1, + ACTIONS(2624), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2536), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2534), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15090] = 7, - ACTIONS(2484), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_LT2, - STATE(855), 1, - sym_type_arguments, - STATE(907), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2546), 17, + ACTIONS(2620), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81028,8 +82532,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2544), 26, + ACTIONS(2618), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -81040,6 +82545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -81055,64 +82561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15154] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1756), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1758), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15210] = 3, + [15202] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1656), 9, + ACTIONS(1848), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81122,7 +82575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1658), 38, + ACTIONS(1850), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81161,19 +82614,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15266] = 7, - ACTIONS(2488), 1, - anon_sym_BANG, - ACTIONS(2548), 1, - anon_sym_LBRACE, - ACTIONS(2550), 1, - anon_sym_COLON_COLON, - STATE(1094), 1, - sym_field_initializer_list, + [15258] = 7, + ACTIONS(2566), 1, + anon_sym_LPAREN, + ACTIONS(2574), 1, + anon_sym_LT2, + STATE(814), 1, + sym_type_arguments, + STATE(866), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2628), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81184,15 +82637,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(566), 28, + ACTIONS(2626), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -81206,7 +82661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -81216,17 +82670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15330] = 5, - ACTIONS(2556), 1, + [15322] = 5, + ACTIONS(2634), 1, anon_sym_BANG, - ACTIONS(2558), 1, + ACTIONS(2636), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2554), 17, + ACTIONS(2632), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81244,7 +82697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2552), 28, + ACTIONS(2630), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81273,11 +82726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15390] = 3, + [15382] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1836), 9, + ACTIONS(1558), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81287,7 +82740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1838), 38, + ACTIONS(1560), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81326,68 +82779,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15446] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1832), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, + [15438] = 7, + ACTIONS(2570), 1, + anon_sym_BANG, + ACTIONS(2638), 1, + anon_sym_LBRACE, + ACTIONS(2640), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1834), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15502] = 5, - ACTIONS(2560), 1, - anon_sym_else, - STATE(1035), 1, - sym_else_clause, + STATE(1117), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(498), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81403,11 +82807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(496), 29, + ACTIONS(564), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -81433,13 +82836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15561] = 4, - ACTIONS(2562), 1, + [15502] = 4, + ACTIONS(2642), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2556), 16, + ACTIONS(2634), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81456,7 +82859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2558), 29, + ACTIONS(2636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81486,16 +82889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15618] = 4, - ACTIONS(2564), 1, - anon_sym_LBRACE, + [15559] = 5, + ACTIONS(2644), 1, + anon_sym_else, + STATE(1055), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 16, + ACTIONS(396), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81509,10 +82913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2516), 29, + ACTIONS(394), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -81520,7 +82925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -81539,15 +82943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15675] = 5, - ACTIONS(2570), 1, + [15618] = 5, + ACTIONS(2650), 1, anon_sym_SQUOTE, STATE(1066), 1, sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 15, + ACTIONS(2648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81563,7 +82967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2566), 29, + ACTIONS(2646), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81593,13 +82997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15734] = 4, - ACTIONS(2572), 1, + [15677] = 4, + ACTIONS(2652), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2522), 16, + ACTIONS(2614), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81616,7 +83020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2524), 29, + ACTIONS(2616), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81646,17 +83050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15791] = 5, - ACTIONS(2560), 1, - anon_sym_else, - STATE(1082), 1, - sym_else_clause, + [15734] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(490), 15, + ACTIONS(2614), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81670,7 +83071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(488), 29, + ACTIONS(2616), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81682,6 +83083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -81700,11 +83102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15850] = 3, + [15789] = 4, + ACTIONS(2654), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 16, + ACTIONS(2622), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81721,11 +83125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2516), 30, + ACTIONS(2624), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -81752,13 +83155,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [15846] = 5, + ACTIONS(2644), 1, + anon_sym_else, + STATE(1067), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(502), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(500), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, [15905] = 4, - ACTIONS(2574), 1, + ACTIONS(2656), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 16, + ACTIONS(2602), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81775,7 +83232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2532), 29, + ACTIONS(2604), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81809,7 +83266,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + ACTIONS(1428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81817,7 +83274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1510), 38, + ACTIONS(1430), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81860,7 +83317,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1940), 7, + ACTIONS(1656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81868,7 +83325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81911,7 +83368,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1384), 7, + ACTIONS(1880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81919,7 +83376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1386), 38, + ACTIONS(1882), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81962,7 +83419,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + ACTIONS(1840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81970,7 +83427,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1222), 38, + ACTIONS(1842), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1872), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1874), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82009,116 +83517,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16178] = 5, - ACTIONS(2578), 1, - anon_sym_LPAREN, - STATE(1098), 1, - sym_arguments, + [16232] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2576), 28, + ACTIONS(1836), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16236] = 4, - ACTIONS(2582), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1838), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16286] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 29, + ACTIONS(1832), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16292] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1834), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82126,7 +83631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1156), 38, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82165,11 +83670,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16346] = 3, + [16394] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82177,7 +83682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1906), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82216,11 +83721,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16400] = 3, + [16448] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82228,7 +83733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1226), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82267,11 +83772,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16454] = 3, + [16502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1236), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82279,7 +83784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1238), 38, + ACTIONS(1802), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82318,11 +83823,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16508] = 3, + [16556] = 5, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, + ACTIONS(2658), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 15, + ACTIONS(2590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82338,11 +83847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 30, + ACTIONS(2588), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82350,7 +83858,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -82369,11 +83876,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16562] = 3, + [16614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1284), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82381,7 +83888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1286), 38, + ACTIONS(1902), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82420,11 +83927,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16616] = 3, + [16668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + ACTIONS(1796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82432,7 +83939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1690), 38, + ACTIONS(1798), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82471,11 +83978,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16670] = 3, + [16722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82483,7 +83990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82522,11 +84029,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16724] = 3, + [16776] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1288), 7, + ACTIONS(546), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(544), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [16830] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82534,7 +84092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1290), 38, + ACTIONS(1190), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82573,11 +84131,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16778] = 3, + [16884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1300), 7, + ACTIONS(1792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82585,7 +84143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1302), 38, + ACTIONS(1794), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82624,11 +84182,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16832] = 3, + [16938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82636,7 +84194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82675,11 +84233,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16886] = 3, + [16992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1316), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82687,7 +84245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1318), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82726,62 +84284,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16940] = 3, + [17046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2588), 30, + ACTIONS(1856), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16994] = 3, + sym_metavariable, + ACTIONS(1858), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1504), 7, + ACTIONS(1784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82789,7 +84347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1786), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82828,11 +84386,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17048] = 3, + [17154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1578), 7, + ACTIONS(1780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82840,7 +84398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1580), 38, + ACTIONS(1782), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82879,11 +84437,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17102] = 3, + [17208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1582), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82891,7 +84449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1584), 38, + ACTIONS(1854), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82930,64 +84488,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17156] = 5, - ACTIONS(2542), 1, - anon_sym_COLON_COLON, - ACTIONS(2592), 1, - anon_sym_BANG, + [17262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2534), 28, + ACTIONS(1224), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17214] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1226), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1590), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82995,7 +84551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1592), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83034,11 +84590,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17268] = 3, + [17370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(848), 15, + ACTIONS(2662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83054,7 +84610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(850), 30, + ACTIONS(2660), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83063,10 +84619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -83085,11 +84641,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17322] = 3, + [17424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1594), 7, + ACTIONS(2666), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2664), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17478] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83097,7 +84704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1596), 38, + ACTIONS(1778), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83136,11 +84743,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17376] = 3, + [17532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1610), 7, + ACTIONS(1764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83148,7 +84755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1612), 38, + ACTIONS(1766), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83187,11 +84794,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17430] = 3, + [17586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83199,7 +84806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1746), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83238,11 +84845,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17484] = 3, + [17640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1804), 7, + ACTIONS(1740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83250,7 +84857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1806), 38, + ACTIONS(1742), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83289,11 +84896,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17538] = 3, + [17694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, + ACTIONS(1732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83301,7 +84908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1670), 38, + ACTIONS(1734), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83340,11 +84947,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17592] = 3, + [17748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1672), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83352,7 +84959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1674), 38, + ACTIONS(1926), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83391,64 +84998,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17646] = 5, - ACTIONS(2488), 1, - anon_sym_BANG, - ACTIONS(2594), 1, - anon_sym_COLON_COLON, + [17802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17704] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1840), 7, + ACTIONS(1952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83456,7 +85010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1842), 38, + ACTIONS(1954), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83495,11 +85049,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17758] = 3, + [17856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(1704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83507,7 +85061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(1706), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83546,11 +85100,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17812] = 3, + [17910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1110), 7, + ACTIONS(1960), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83558,7 +85112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1112), 38, + ACTIONS(1962), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83597,114 +85151,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17866] = 3, + [17964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(532), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(530), 30, + ACTIONS(544), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [17920] = 4, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2546), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2544), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17976] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(546), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1740), 7, + ACTIONS(550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83712,7 +85214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1742), 38, + ACTIONS(552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83751,63 +85253,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18030] = 4, - ACTIONS(2598), 1, - anon_sym_COLON_COLON, + [18072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2546), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2544), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18086] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1864), 7, + ACTIONS(1590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83815,7 +85265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1866), 38, + ACTIONS(1592), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83854,13 +85304,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18140] = 4, - ACTIONS(2600), 1, - anon_sym_COLON_COLON, + [18126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2546), 15, + ACTIONS(552), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83876,7 +85324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(550), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83906,11 +85354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18196] = 3, + anon_sym_else, + [18180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1744), 7, + ACTIONS(1304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83918,7 +85367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1746), 38, + ACTIONS(1306), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83957,11 +85406,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18250] = 3, + [18234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1972), 7, + ACTIONS(1582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83969,7 +85418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1974), 38, + ACTIONS(1584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84008,11 +85457,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18304] = 3, + [18288] = 4, + ACTIONS(2672), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1348), 7, + ACTIONS(2670), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2668), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18344] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84020,7 +85521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1350), 38, + ACTIONS(622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84059,11 +85560,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18358] = 3, + [18398] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1344), 7, + ACTIONS(2676), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2674), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18452] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84071,7 +85623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1346), 38, + ACTIONS(1830), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84110,11 +85662,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18412] = 3, + [18506] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1880), 7, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84122,7 +85674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1882), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84161,11 +85713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18466] = 3, + [18560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1884), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84173,7 +85725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1886), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84212,11 +85764,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18520] = 3, + [18614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1892), 7, + ACTIONS(1788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84224,7 +85776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1894), 38, + ACTIONS(1790), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84263,62 +85815,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18574] = 3, + [18668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 7, + ACTIONS(2680), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2678), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1998), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18628] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1988), 7, + ACTIONS(652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84326,7 +85878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1990), 38, + ACTIONS(654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84365,11 +85917,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18682] = 3, + [18776] = 4, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1976), 7, + ACTIONS(2628), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2626), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18832] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84377,7 +85981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1978), 38, + ACTIONS(1346), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84416,11 +86020,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18736] = 3, + [18886] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1968), 7, + ACTIONS(1272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84428,7 +86032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1970), 38, + ACTIONS(1274), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84467,11 +86071,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18790] = 3, + [18940] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1960), 7, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84479,7 +86083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1962), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84518,11 +86122,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18844] = 3, + [18994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1952), 7, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84530,7 +86134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1954), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84569,11 +86173,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18898] = 3, + [19048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(554), 7, + ACTIONS(676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84581,7 +86185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(556), 38, + ACTIONS(678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84620,11 +86224,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18952] = 3, + [19102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1948), 7, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84632,7 +86236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1950), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84671,11 +86275,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19006] = 3, + [19156] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1932), 7, + ACTIONS(1624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84683,7 +86287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(1626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84722,11 +86326,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19060] = 3, + [19210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1912), 7, + ACTIONS(1420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84734,7 +86338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1914), 38, + ACTIONS(1422), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84773,11 +86377,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19114] = 3, + [19264] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(540), 7, + ACTIONS(2686), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2688), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2684), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19320] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84785,7 +86441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(542), 38, + ACTIONS(576), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84824,11 +86480,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19168] = 3, + [19374] = 4, + ACTIONS(2694), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(530), 7, + ACTIONS(2692), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2690), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19430] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84836,7 +86544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(532), 38, + ACTIONS(1986), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84875,11 +86583,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19222] = 3, + [19484] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 7, + ACTIONS(2000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84887,7 +86595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(588), 38, + ACTIONS(2002), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84926,11 +86634,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19276] = 3, + [19538] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(602), 7, + ACTIONS(1098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84938,7 +86646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(604), 38, + ACTIONS(1100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84977,11 +86685,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19330] = 3, + [19592] = 4, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 7, + ACTIONS(2586), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2584), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19648] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84989,7 +86749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1986), 38, + ACTIONS(1474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85028,63 +86788,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19384] = 4, + [19702] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2606), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2602), 28, + ACTIONS(1300), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19440] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1302), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19756] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, + ACTIONS(1598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85092,7 +86851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1600), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85131,11 +86890,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19494] = 3, + [19810] = 4, + ACTIONS(2700), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2698), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2696), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(648), 7, + ACTIONS(1484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85143,7 +86954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(650), 38, + ACTIONS(1486), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85182,11 +86993,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19548] = 3, + [19920] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 7, + ACTIONS(1610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85194,7 +87005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(592), 38, + ACTIONS(1612), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85233,11 +87044,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19602] = 3, + [19974] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2004), 7, + ACTIONS(1492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85245,7 +87056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2006), 38, + ACTIONS(1494), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85284,11 +87095,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19656] = 3, + [20028] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2000), 7, + ACTIONS(1692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85296,7 +87107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2002), 38, + ACTIONS(1694), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85335,11 +87146,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19710] = 3, + [20082] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1992), 7, + ACTIONS(1578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85347,7 +87158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1994), 38, + ACTIONS(1580), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85386,62 +87197,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19764] = 3, + [20136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(542), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(540), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [19818] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1964), 7, + ACTIONS(1566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85449,7 +87209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1966), 38, + ACTIONS(1568), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85488,62 +87248,114 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19872] = 3, + [20190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1780), 7, + ACTIONS(848), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(850), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20244] = 4, + ACTIONS(2706), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2704), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1782), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19926] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2702), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20300] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + ACTIONS(1528), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85551,7 +87363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1530), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85590,11 +87402,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19980] = 3, + [20354] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1724), 7, + ACTIONS(1964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85602,7 +87414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1726), 38, + ACTIONS(1966), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85641,11 +87453,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20034] = 3, + [20408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1888), 7, + ACTIONS(1956), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85653,7 +87465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1890), 38, + ACTIONS(1958), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85692,11 +87504,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20088] = 3, + [20462] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1876), 7, + ACTIONS(1546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85704,7 +87516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1878), 38, + ACTIONS(1548), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85743,11 +87555,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20142] = 3, + [20516] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1716), 7, + ACTIONS(1550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85755,7 +87567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1718), 38, + ACTIONS(1552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85794,11 +87606,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20196] = 3, + [20570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1848), 7, + ACTIONS(1574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85806,7 +87618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1850), 38, + ACTIONS(1576), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85845,11 +87657,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20250] = 3, + [20624] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1182), 7, + ACTIONS(1948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85857,7 +87669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1184), 38, + ACTIONS(1950), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85896,62 +87708,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20304] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2610), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2608), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20358] = 3, + [20678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1708), 7, + ACTIONS(1700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85959,7 +87720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1710), 38, + ACTIONS(1702), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85998,11 +87759,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20412] = 3, + [20732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 15, + ACTIONS(2710), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86018,7 +87779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2612), 30, + ACTIONS(2708), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86049,62 +87810,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20466] = 3, + [20786] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2616), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20520] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1808), 7, + ACTIONS(1456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86112,7 +87822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1810), 38, + ACTIONS(1458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86151,11 +87861,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20574] = 3, + [20840] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + ACTIONS(1536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86163,7 +87873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86202,11 +87912,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20628] = 3, + [20894] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1800), 7, + ACTIONS(1452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86214,7 +87924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1802), 38, + ACTIONS(1454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86253,62 +87963,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20682] = 3, + [20948] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2620), 30, + ACTIONS(1436), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20736] = 3, + sym_metavariable, + ACTIONS(1438), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1696), 7, + ACTIONS(1532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86316,7 +88026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1698), 38, + ACTIONS(1534), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86355,63 +88065,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20790] = 4, - ACTIONS(2628), 1, - anon_sym_DASH_GT, + [21056] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2624), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20846] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1098), 7, + ACTIONS(1412), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86419,7 +88077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1100), 38, + ACTIONS(1414), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86458,11 +88116,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20900] = 3, + [21110] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1788), 7, + ACTIONS(1500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86470,7 +88128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1790), 38, + ACTIONS(1502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86509,11 +88167,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20954] = 3, + [21164] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(1352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86521,7 +88179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1354), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86560,11 +88218,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21008] = 3, + [21218] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1776), 7, + ACTIONS(2714), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2712), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86572,7 +88281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1778), 38, + ACTIONS(1278), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86611,11 +88320,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21062] = 3, + [21326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1094), 7, + ACTIONS(1336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86623,7 +88332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1096), 38, + ACTIONS(1338), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86662,11 +88371,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21116] = 3, + [21380] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1618), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86674,7 +88383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1620), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86713,11 +88422,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21170] = 3, + [21434] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1562), 7, + ACTIONS(1312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86725,7 +88434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1564), 38, + ACTIONS(1314), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86764,115 +88473,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21224] = 4, - ACTIONS(2634), 1, - anon_sym_DASH_GT, + [21488] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2630), 29, + ACTIONS(1586), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21280] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2636), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2606), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2602), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21336] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1588), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21542] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1768), 7, + ACTIONS(1212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86880,7 +88536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1770), 38, + ACTIONS(1214), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86919,11 +88575,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21390] = 3, + [21596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1760), 7, + ACTIONS(1280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86931,7 +88587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1762), 38, + ACTIONS(1282), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86970,11 +88626,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21444] = 3, + [21650] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1460), 7, + ACTIONS(1200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86982,7 +88638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(1202), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87021,11 +88677,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21498] = 3, + [21704] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + ACTIONS(1102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87033,7 +88689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1450), 38, + ACTIONS(1104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87072,11 +88728,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21552] = 3, + [21758] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87084,7 +88740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1194), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87123,63 +88779,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21606] = 4, - ACTIONS(2600), 1, - anon_sym_COLON_COLON, + [21812] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2506), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21662] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1440), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87187,7 +88791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1442), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87226,11 +88830,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21716] = 3, + [21866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1752), 7, + ACTIONS(1106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87238,7 +88842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1754), 38, + ACTIONS(1108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87277,11 +88881,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21770] = 3, + [21920] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1432), 7, + ACTIONS(1606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87289,7 +88893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1434), 38, + ACTIONS(1608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87328,11 +88932,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21824] = 3, + [21974] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1412), 7, + ACTIONS(1110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87340,7 +88944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1414), 38, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87379,11 +88983,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21878] = 3, + [22028] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1748), 7, + ACTIONS(1620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87391,7 +88995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1750), 38, + ACTIONS(1622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87430,11 +89034,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21932] = 3, + [22082] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1126), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87442,7 +89046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1128), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87481,11 +89085,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21986] = 3, + [22136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1404), 7, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87493,7 +89097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1406), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87532,63 +89136,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22040] = 4, - ACTIONS(2600), 1, - anon_sym_COLON_COLON, + [22190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2502), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22096] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1134), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87596,7 +89148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1136), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87635,11 +89187,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22150] = 3, + [22244] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1400), 7, + ACTIONS(1292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87647,7 +89199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1402), 38, + ACTIONS(1294), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87686,11 +89238,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22204] = 3, + [22298] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1142), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87698,7 +89250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1144), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87737,13 +89289,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22258] = 4, - ACTIONS(2642), 1, - anon_sym_DASH_GT, + [22352] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(2718), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87759,7 +89309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 29, + ACTIONS(2716), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87771,6 +89321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87789,11 +89340,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22314] = 3, + [22406] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1170), 7, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87801,7 +89352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1172), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87840,11 +89391,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22368] = 3, + [22460] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 15, + ACTIONS(1130), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1132), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22514] = 4, + ACTIONS(2720), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87860,7 +89464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2644), 30, + ACTIONS(2606), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87872,7 +89476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87891,11 +89494,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22422] = 3, + [22570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87903,7 +89506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1654), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87942,11 +89545,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22476] = 3, + [22624] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, + ACTIONS(1340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87954,7 +89557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1650), 38, + ACTIONS(1342), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87993,11 +89596,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22530] = 3, + [22678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1392), 7, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88005,7 +89608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1394), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88044,11 +89647,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22584] = 3, + [22732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1644), 7, + ACTIONS(2724), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2722), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88056,7 +89710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1646), 38, + ACTIONS(1148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88095,11 +89749,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22638] = 3, + [22840] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1626), 7, + ACTIONS(1256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88107,7 +89761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1628), 38, + ACTIONS(1258), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88146,11 +89800,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22692] = 3, + [22894] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1388), 7, + ACTIONS(1562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88158,7 +89812,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1390), 38, + ACTIONS(1564), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22948] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1360), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88197,11 +89902,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22746] = 3, + [23002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88209,7 +89914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1378), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88248,7 +89953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22800] = 3, + [23056] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -88299,11 +90004,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22854] = 3, + [23110] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(2726), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2688), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2684), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23166] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1424), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88311,7 +90068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1426), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88350,62 +90107,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22908] = 3, + [23220] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1570), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2648), 30, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1572), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23274] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1440), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22962] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1442), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23328] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + ACTIONS(1640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88413,7 +90221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88452,11 +90260,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23016] = 3, + [23382] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1512), 7, + ACTIONS(1652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88464,7 +90272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88503,11 +90311,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23070] = 3, + [23436] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1468), 7, + ACTIONS(1444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88515,7 +90323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88554,11 +90362,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23124] = 3, + [23490] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1368), 7, + ACTIONS(1464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88566,7 +90374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1370), 38, + ACTIONS(1466), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88605,11 +90413,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23178] = 3, + [23544] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1296), 7, + ACTIONS(1748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88617,7 +90425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1298), 38, + ACTIONS(1750), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88656,11 +90464,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23232] = 3, + [23598] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1364), 7, + ACTIONS(1480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88668,7 +90476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1366), 38, + ACTIONS(1482), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88707,11 +90515,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23286] = 3, + [23652] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1542), 7, + ACTIONS(1752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88719,7 +90527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1544), 38, + ACTIONS(1754), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88758,11 +90566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23340] = 3, + [23706] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1634), 7, + ACTIONS(1760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88770,7 +90578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1636), 38, + ACTIONS(1762), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88809,11 +90617,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23394] = 3, + [23760] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1340), 7, + ACTIONS(1488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88821,7 +90629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1342), 38, + ACTIONS(1490), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88860,11 +90668,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23448] = 3, + [23814] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1408), 7, + ACTIONS(1768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88872,7 +90680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1410), 38, + ACTIONS(1770), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88911,13 +90719,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23502] = 4, - ACTIONS(2656), 1, - anon_sym_DASH_GT, + [23868] = 4, + ACTIONS(2728), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88933,7 +90741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2652), 29, + ACTIONS(564), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88963,11 +90771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23558] = 3, + [23924] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1528), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88975,7 +90783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1530), 38, + ACTIONS(1814), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89014,11 +90822,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23612] = 3, + [23978] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1396), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89026,7 +90834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1398), 38, + ACTIONS(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89065,11 +90873,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23666] = 3, + [24032] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1546), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89077,7 +90885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1548), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89116,11 +90924,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23720] = 3, + [24086] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1328), 7, + ACTIONS(1504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89128,7 +90936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1330), 38, + ACTIONS(1506), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89167,11 +90975,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23774] = 3, + [24140] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1324), 7, + ACTIONS(1094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89179,7 +90987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1326), 38, + ACTIONS(1096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89218,11 +91026,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23828] = 3, + [24194] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1276), 7, + ACTIONS(1516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89230,7 +91038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1278), 38, + ACTIONS(1518), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89269,11 +91077,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23882] = 3, + [24248] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1550), 7, + ACTIONS(1594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89281,7 +91089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1552), 38, + ACTIONS(1596), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89320,11 +91128,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23936] = 3, + [24302] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1574), 7, + ACTIONS(1468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89332,7 +91140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1576), 38, + ACTIONS(1470), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89371,11 +91179,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23990] = 3, + [24356] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1280), 7, + ACTIONS(1308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89383,7 +91191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1282), 38, + ACTIONS(1310), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89422,11 +91230,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24044] = 3, + [24410] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1264), 7, + ACTIONS(2004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89434,7 +91242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1266), 38, + ACTIONS(2006), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89473,11 +91281,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24098] = 3, + [24464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1252), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89485,7 +91293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1254), 38, + ACTIONS(1998), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89524,11 +91332,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24152] = 3, + [24518] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1166), 7, + ACTIONS(1988), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89536,7 +91344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1168), 38, + ACTIONS(1990), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89575,11 +91383,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24206] = 3, + [24572] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1146), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89587,7 +91395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1148), 38, + ACTIONS(1978), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89626,113 +91434,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24260] = 3, + [24626] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1684), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2732), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1686), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24314] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1138), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2730), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1140), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24368] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24680] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, + ACTIONS(1524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89740,7 +91497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1132), 38, + ACTIONS(1526), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89779,11 +91536,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24422] = 3, + [24734] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1586), 7, + ACTIONS(1288), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89791,7 +91548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1290), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89830,62 +91587,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24476] = 3, + [24788] = 4, + ACTIONS(2734), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1272), 7, + ACTIONS(2608), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2606), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1274), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24530] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24844] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1260), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89893,7 +91651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1262), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89932,11 +91690,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24584] = 3, + [24898] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1106), 7, + ACTIONS(1636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89944,7 +91702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1108), 38, + ACTIONS(1638), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89983,11 +91741,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24638] = 3, + [24952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(1772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89995,7 +91753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1774), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90034,11 +91792,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24692] = 3, + [25006] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1244), 7, + ACTIONS(1712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90046,7 +91804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1246), 38, + ACTIONS(1714), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90085,11 +91843,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24746] = 3, + [25060] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1150), 7, + ACTIONS(524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90097,7 +91855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1152), 38, + ACTIONS(526), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90136,11 +91894,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24800] = 3, + [25114] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 15, + ACTIONS(1756), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1758), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25168] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90156,7 +91965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2658), 30, + ACTIONS(2736), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90168,7 +91977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -90187,11 +91996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24854] = 3, + [25222] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1114), 7, + ACTIONS(1644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90199,7 +92008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1116), 38, + ACTIONS(1646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90238,11 +92047,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24908] = 3, + [25276] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + ACTIONS(1476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90250,7 +92059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 38, + ACTIONS(1478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90289,62 +92098,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24962] = 3, + [25330] = 4, + ACTIONS(2744), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1102), 7, + ACTIONS(2742), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2740), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1104), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25016] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25386] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1622), 7, + ACTIONS(1372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90352,7 +92162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1624), 38, + ACTIONS(1374), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90391,62 +92201,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25070] = 3, + [25440] = 4, + ACTIONS(2750), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1428), 7, + ACTIONS(2748), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2746), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1430), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25124] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1638), 7, + ACTIONS(1684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90454,7 +92265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1640), 38, + ACTIONS(1686), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90493,11 +92304,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25178] = 3, + [25550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, + ACTIONS(1680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90505,7 +92316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1124), 38, + ACTIONS(1682), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90544,11 +92355,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25232] = 3, + [25604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1416), 7, + ACTIONS(1676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90556,7 +92367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1418), 38, + ACTIONS(1678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90595,11 +92406,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25286] = 3, + [25658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + ACTIONS(1844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90607,7 +92418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1846), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90646,11 +92457,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25340] = 3, + [25712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1436), 7, + ACTIONS(1660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90658,7 +92469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1438), 38, + ACTIONS(1662), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90697,11 +92508,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25394] = 3, + [25766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1784), 7, + ACTIONS(1196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90709,7 +92520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1786), 38, + ACTIONS(1198), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90748,11 +92559,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25448] = 3, + [25820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1868), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90760,7 +92571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1870), 38, + ACTIONS(1982), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90799,11 +92610,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25502] = 3, + [25874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1944), 7, + ACTIONS(1672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90811,7 +92622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1946), 38, + ACTIONS(1674), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90850,11 +92661,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25556] = 3, + [25928] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1816), 7, + ACTIONS(1972), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90862,7 +92673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1818), 38, + ACTIONS(1974), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90901,62 +92712,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25610] = 3, + [25982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2664), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2662), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25664] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1820), 7, + ACTIONS(1664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90964,7 +92724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1822), 38, + ACTIONS(1666), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91003,11 +92763,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25718] = 3, + [26036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1904), 7, + ACTIONS(1614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91015,7 +92775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1906), 38, + ACTIONS(1616), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91054,11 +92814,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25772] = 3, + [26090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1186), 7, + ACTIONS(1668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91066,7 +92826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1188), 38, + ACTIONS(1670), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91105,113 +92865,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25826] = 3, + [26144] = 4, + ACTIONS(2756), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2754), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1454), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25880] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1472), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2752), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1474), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25934] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(1554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91219,7 +92929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(1556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91258,11 +92968,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25988] = 3, + [26254] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1308), 7, + ACTIONS(1520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91270,7 +92980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1310), 38, + ACTIONS(1522), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91309,11 +93019,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26042] = 3, + [26308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1924), 7, + ACTIONS(1388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91321,7 +93031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1926), 38, + ACTIONS(1390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91360,11 +93070,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26096] = 3, + [26362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + ACTIONS(1384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91372,7 +93082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(1386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91411,11 +93121,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26150] = 3, + [26416] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1312), 7, + ACTIONS(1368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91423,7 +93133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1314), 38, + ACTIONS(1370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91462,11 +93172,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26204] = 3, + [26470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(1364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91474,7 +93184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1366), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91513,11 +93223,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26258] = 3, + [26524] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(1356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91525,7 +93235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1358), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91564,11 +93274,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26312] = 3, + [26578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1372), 7, + ACTIONS(1332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91576,7 +93286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1374), 38, + ACTIONS(1334), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91615,11 +93325,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26366] = 3, + [26632] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + ACTIONS(1324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91627,7 +93337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1326), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91666,11 +93376,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26420] = 3, + [26686] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(1936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91678,7 +93388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1938), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91717,11 +93427,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26474] = 3, + [26740] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(1320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91729,7 +93439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1322), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91768,11 +93478,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26528] = 3, + [26794] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1420), 7, + ACTIONS(1316), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91780,7 +93490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1422), 38, + ACTIONS(1318), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91819,11 +93529,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26582] = 3, + [26848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1524), 7, + ACTIONS(1284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91831,7 +93541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1526), 38, + ACTIONS(1286), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91870,11 +93580,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26636] = 3, + [26902] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1936), 7, + ACTIONS(1268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91882,7 +93592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1938), 38, + ACTIONS(1270), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91921,11 +93631,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26690] = 3, + [26956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1336), 7, + ACTIONS(1264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91933,7 +93643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1338), 38, + ACTIONS(1266), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91972,11 +93682,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26744] = 3, + [27010] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1424), 7, + ACTIONS(1252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91984,7 +93694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1426), 38, + ACTIONS(1254), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92023,11 +93733,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26798] = 3, + [27064] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1558), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92035,7 +93745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1560), 38, + ACTIONS(1934), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92074,11 +93784,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26852] = 3, + [27118] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1566), 7, + ACTIONS(1244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92086,7 +93796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1568), 38, + ACTIONS(1246), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92125,11 +93835,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26906] = 3, + [27172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1570), 7, + ACTIONS(1240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92137,7 +93847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1572), 38, + ACTIONS(1242), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92176,11 +93886,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26960] = 3, + [27226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, + ACTIONS(1236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92188,7 +93898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(1238), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92227,11 +93937,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27014] = 3, + [27280] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92239,7 +93949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92278,11 +93988,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27068] = 3, + [27334] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1536), 7, + ACTIONS(1232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92290,7 +94000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1538), 38, + ACTIONS(1234), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92329,11 +94039,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27122] = 3, + [27388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1292), 7, + ACTIONS(1228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92341,7 +94051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1294), 38, + ACTIONS(1230), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92380,11 +94090,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27176] = 3, + [27442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1190), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92392,7 +94102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1192), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92431,11 +94141,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27230] = 3, + [27496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1928), 7, + ACTIONS(1220), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92443,7 +94153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1930), 38, + ACTIONS(1222), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92482,11 +94192,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27284] = 3, + [27550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1856), 7, + ACTIONS(1920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92494,7 +94204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1858), 38, + ACTIONS(1922), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92533,11 +94243,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27338] = 3, + [27604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92545,7 +94255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92584,62 +94294,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27392] = 3, + [27658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1772), 7, + ACTIONS(2612), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2610), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1774), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27446] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [27712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1844), 7, + ACTIONS(1216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92647,7 +94357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1846), 38, + ACTIONS(1218), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92686,11 +94396,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27500] = 3, + [27766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1852), 7, + ACTIONS(1940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92698,7 +94408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1854), 38, + ACTIONS(1942), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92737,11 +94447,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27554] = 3, + [27820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1496), 7, + ACTIONS(1204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92749,7 +94459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1498), 38, + ACTIONS(1206), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92788,62 +94498,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27608] = 3, + [27874] = 4, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1860), 7, + ACTIONS(2608), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2606), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1862), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27662] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1900), 7, + ACTIONS(1876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92851,7 +94562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1902), 38, + ACTIONS(1878), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92890,11 +94601,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27716] = 3, + [27984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92902,7 +94613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1910), 38, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92941,11 +94652,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27770] = 3, + [28038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1916), 7, + ACTIONS(1184), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92953,7 +94664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1918), 38, + ACTIONS(1186), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92992,63 +94703,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27824] = 4, - ACTIONS(2670), 1, - anon_sym_DASH_GT, + [28092] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2666), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27880] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1828), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93056,7 +94715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1830), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93095,11 +94754,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27934] = 3, + [28146] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(2760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93115,7 +94774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(554), 30, + ACTIONS(2758), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93127,59 +94786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [27988] = 4, - ACTIONS(2676), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2674), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2672), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -93198,11 +94805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28044] = 3, + [28200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93210,7 +94817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1632), 38, + ACTIONS(1946), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93249,11 +94856,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28098] = 3, + [28254] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1956), 7, + ACTIONS(1968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93261,7 +94868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1958), 38, + ACTIONS(1970), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93300,11 +94907,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28152] = 3, + [28308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1980), 7, + ACTIONS(1992), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93312,7 +94919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1982), 38, + ACTIONS(1994), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93351,11 +94958,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28206] = 3, + [28362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1792), 7, + ACTIONS(1542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93363,7 +94970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1794), 38, + ACTIONS(1544), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93402,11 +95009,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28260] = 3, + [28416] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1376), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93414,7 +95021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1378), 38, + ACTIONS(1914), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93453,62 +95060,117 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28314] = 3, + [28470] = 5, + ACTIONS(2570), 1, + anon_sym_BANG, + ACTIONS(2762), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1356), 7, + ACTIONS(562), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(564), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28528] = 5, + ACTIONS(2766), 1, + anon_sym_LPAREN, + STATE(1132), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2768), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1358), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28368] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2764), 28, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1352), 7, + ACTIONS(1724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93516,7 +95178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1354), 38, + ACTIONS(1726), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93555,62 +95217,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28422] = 3, + [28640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1796), 7, + ACTIONS(526), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(524), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1798), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28476] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [28694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1304), 7, + ACTIONS(1602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93618,7 +95280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1306), 38, + ACTIONS(1604), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93657,62 +95319,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28530] = 3, + [28748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1268), 7, + ACTIONS(2772), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2770), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1270), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28584] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1554), 7, + ACTIONS(1296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93720,7 +95382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1556), 38, + ACTIONS(1298), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93759,11 +95421,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28638] = 3, + [28856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1256), 7, + ACTIONS(1260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93771,7 +95433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1258), 38, + ACTIONS(1262), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93810,11 +95472,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28692] = 3, + [28910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(1248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93822,7 +95484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1250), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93861,11 +95523,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28746] = 3, + [28964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1812), 7, + ACTIONS(1720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93873,7 +95535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1814), 38, + ACTIONS(1722), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93912,11 +95574,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28800] = 3, + [29018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1824), 7, + ACTIONS(1208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93924,7 +95586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1826), 38, + ACTIONS(1210), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93963,63 +95625,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28854] = 4, - ACTIONS(2682), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2680), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2678), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28910] = 3, + [29072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1360), 7, + ACTIONS(1508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94027,7 +95637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1362), 38, + ACTIONS(1510), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94066,11 +95676,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28964] = 3, + [29126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1248), 7, + ACTIONS(1392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94078,7 +95688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1250), 38, + ACTIONS(1394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94117,11 +95727,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29018] = 3, + [29180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1332), 7, + ACTIONS(1396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94129,7 +95739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1334), 38, + ACTIONS(1398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94168,11 +95778,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29072] = 3, + [29234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1240), 7, + ACTIONS(1400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94180,7 +95790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1242), 38, + ACTIONS(1402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94219,11 +95829,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29126] = 3, + [29288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(1736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94231,7 +95841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1738), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94270,11 +95880,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29180] = 3, + [29342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1692), 7, + ACTIONS(1404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94282,7 +95892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1694), 38, + ACTIONS(1406), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94321,11 +95931,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29234] = 3, + [29396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + ACTIONS(1416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94333,7 +95943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(1418), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94372,11 +95982,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29288] = 3, + [29450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1320), 7, + ACTIONS(1432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94384,7 +95994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1322), 38, + ACTIONS(1434), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94423,11 +96033,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29342] = 3, + [29504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1228), 7, + ACTIONS(1448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94435,7 +96045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(1450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94474,113 +96084,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29396] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2686), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2684), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29450] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2690), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2688), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29504] = 3, + [29558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1764), 7, + ACTIONS(1460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94588,7 +96096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1766), 38, + ACTIONS(1462), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94627,11 +96135,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29558] = 3, + [29612] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1896), 7, + ACTIONS(1728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94639,7 +96147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1898), 38, + ACTIONS(1730), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94678,11 +96186,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29612] = 3, + [29666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(1496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94690,7 +96198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1922), 38, + ACTIONS(1498), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94729,11 +96237,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29666] = 3, + [29720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1178), 7, + ACTIONS(1708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94741,7 +96249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1180), 38, + ACTIONS(1710), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94780,62 +96288,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29720] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2512), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2510), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, [29774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94843,7 +96300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1666), 38, + ACTIONS(1514), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94886,7 +96343,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + ACTIONS(1688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94894,7 +96351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(1690), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94937,7 +96394,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1162), 7, + ACTIONS(1696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94945,7 +96402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1164), 38, + ACTIONS(1698), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94984,113 +96441,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29936] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(580), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(578), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29989] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2602), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30042] = 4, - ACTIONS(2542), 1, + [29936] = 4, + ACTIONS(2774), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95106,7 +96463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2534), 28, + ACTIONS(564), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95135,11 +96492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30097] = 3, + [29991] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2694), 15, + ACTIONS(2403), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95155,7 +96512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2692), 29, + ACTIONS(2405), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95185,62 +96542,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30150] = 4, - ACTIONS(2700), 1, - anon_sym_RBRACE, + [30044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2698), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(654), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(652), 29, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30097] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2778), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2696), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30205] = 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2776), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 15, + ACTIONS(646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95256,7 +96662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2702), 29, + ACTIONS(644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95286,11 +96692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30258] = 3, + [30203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 15, + ACTIONS(2782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95306,7 +96712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2706), 29, + ACTIONS(2780), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95336,11 +96742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30311] = 3, + [30256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(646), 15, + ACTIONS(630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95356,7 +96762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(644), 29, + ACTIONS(628), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95386,11 +96792,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30364] = 3, + [30309] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95406,7 +96812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2710), 29, + ACTIONS(660), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95436,7 +96842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30417] = 3, + [30362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -95486,11 +96892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30470] = 3, + [30415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 15, + ACTIONS(2786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95506,7 +96912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2714), 29, + ACTIONS(2784), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95536,11 +96942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30523] = 3, + [30468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2720), 15, + ACTIONS(638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95556,7 +96962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2718), 29, + ACTIONS(636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95586,11 +96992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30576] = 3, + [30521] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 15, + ACTIONS(2790), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95606,7 +97012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2722), 29, + ACTIONS(2788), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95636,11 +97042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30629] = 3, + [30574] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2305), 15, + ACTIONS(2794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95656,7 +97062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2307), 29, + ACTIONS(2792), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95686,11 +97092,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30682] = 3, + [30627] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 15, + ACTIONS(2798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95706,7 +97112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2726), 29, + ACTIONS(2796), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95736,11 +97142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30735] = 3, + [30680] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2317), 15, + ACTIONS(2802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95756,7 +97162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2319), 29, + ACTIONS(2800), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95786,13 +97192,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30788] = 4, - ACTIONS(2730), 1, - anon_sym_COLON_COLON, + [30733] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95808,10 +97212,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 28, + ACTIONS(2804), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -95837,11 +97242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30843] = 3, + [30786] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(604), 15, + ACTIONS(678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95857,7 +97262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(602), 29, + ACTIONS(676), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95887,11 +97292,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30896] = 3, + [30839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(2810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95907,7 +97312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 29, + ACTIONS(2808), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95937,11 +97342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30949] = 3, + [30892] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(2810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95957,7 +97362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 29, + ACTIONS(2808), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95987,11 +97392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31002] = 3, + [30945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 15, + ACTIONS(2768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96007,7 +97412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2736), 29, + ACTIONS(2764), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96037,11 +97442,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31055] = 3, + [30998] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 15, + ACTIONS(2814), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2812), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31051] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96057,7 +97512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2740), 29, + ACTIONS(2816), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96087,11 +97542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31108] = 3, + [31104] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 15, + ACTIONS(618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96107,7 +97562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2744), 29, + ACTIONS(616), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96137,11 +97592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31161] = 3, + [31157] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 15, + ACTIONS(2822), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96157,7 +97612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2748), 29, + ACTIONS(2820), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96187,11 +97642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31214] = 3, + [31210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 15, + ACTIONS(2826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96207,7 +97662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2752), 29, + ACTIONS(2824), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96237,11 +97692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31267] = 3, + [31263] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 15, + ACTIONS(634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96257,7 +97712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2756), 29, + ACTIONS(632), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96287,11 +97742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31320] = 3, + [31316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(638), 15, + ACTIONS(2830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96307,7 +97762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(636), 29, + ACTIONS(2828), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96337,11 +97792,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31373] = 3, + [31369] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, + ACTIONS(670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96357,7 +97812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2576), 29, + ACTIONS(668), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96387,11 +97842,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31426] = 3, + [31422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2762), 12, + ACTIONS(2834), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -96404,7 +97859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2760), 32, + ACTIONS(2832), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96437,11 +97892,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31479] = 3, + [31475] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + ACTIONS(2391), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96457,7 +97912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 29, + ACTIONS(2393), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96487,11 +97942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31532] = 3, + [31528] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(2608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96507,7 +97962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 29, + ACTIONS(2606), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96537,11 +97992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31585] = 3, + [31581] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, + ACTIONS(2838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96557,7 +98012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2772), 29, + ACTIONS(2836), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96587,63 +98042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31638] = 5, - ACTIONS(2776), 1, - anon_sym_POUND, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1058), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2421), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2419), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31695] = 3, + [31634] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2781), 15, + ACTIONS(2842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96659,7 +98062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2779), 29, + ACTIONS(2840), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96689,11 +98092,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31748] = 3, + [31687] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(630), 15, + ACTIONS(2846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96709,7 +98112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(628), 29, + ACTIONS(2844), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96739,11 +98142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31801] = 3, + [31740] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2785), 15, + ACTIONS(2850), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96759,7 +98162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2783), 29, + ACTIONS(2848), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96789,11 +98192,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31854] = 3, + [31793] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2789), 15, + ACTIONS(2854), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96809,7 +98212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2787), 29, + ACTIONS(2852), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96839,11 +98242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31907] = 3, + [31846] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96859,7 +98262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(582), 29, + ACTIONS(2684), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96889,11 +98292,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31960] = 3, + [31899] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2793), 12, + ACTIONS(2858), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -96906,7 +98309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2791), 32, + ACTIONS(2856), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96939,11 +98342,61 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32013] = 3, + [31952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2797), 15, + ACTIONS(2862), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2860), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32005] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96959,7 +98412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2795), 29, + ACTIONS(578), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96989,11 +98442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32066] = 3, + [32058] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2801), 15, + ACTIONS(674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97009,7 +98462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2799), 29, + ACTIONS(672), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97039,11 +98492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32119] = 3, + [32111] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2805), 15, + ACTIONS(626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97059,7 +98512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2803), 29, + ACTIONS(624), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97089,61 +98542,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32172] = 3, + [32164] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2809), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(622), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2807), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32225] = 3, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(620), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32217] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2813), 15, + ACTIONS(614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97159,7 +98612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2811), 29, + ACTIONS(612), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97189,11 +98642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32278] = 3, + [32270] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2313), 15, + ACTIONS(2866), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97209,7 +98662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2315), 29, + ACTIONS(2864), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97239,11 +98692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32331] = 3, + [32323] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(592), 15, + ACTIONS(666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97259,7 +98712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(590), 29, + ACTIONS(664), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97289,11 +98742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32384] = 3, + [32376] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2817), 15, + ACTIONS(610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97309,7 +98762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2815), 29, + ACTIONS(608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97339,11 +98792,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32437] = 3, + [32429] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(674), 15, + ACTIONS(650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97359,7 +98812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(672), 29, + ACTIONS(648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97389,24 +98842,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32490] = 3, + [32482] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2821), 12, + ACTIONS(2870), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2868), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32535] = 21, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(900), 1, anon_sym_COLON_COLON, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, + anon_sym_STAR, + ACTIONS(2884), 1, + anon_sym_for, + ACTIONS(2886), 1, anon_sym_AMP, + ACTIONS(2888), 1, sym_metavariable, - ACTIONS(2819), 32, + STATE(1855), 1, + sym_scoped_type_identifier, + STATE(1923), 1, + sym_generic_type, + STATE(1958), 1, + sym_where_predicate, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2550), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2874), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(2882), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(2316), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2880), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97424,26 +98960,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32543] = 3, + [32624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2892), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2890), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32677] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2825), 15, + ACTIONS(2896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97459,7 +99030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2823), 29, + ACTIONS(2894), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97489,129 +99060,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32596] = 3, + [32730] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2829), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2900), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2827), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32649] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, - sym_identifier, - ACTIONS(2835), 1, - anon_sym_LPAREN, - ACTIONS(2837), 1, - anon_sym_STAR, - ACTIONS(2843), 1, - anon_sym_for, - ACTIONS(2845), 1, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2847), 1, - sym_metavariable, - STATE(1848), 1, - sym_scoped_type_identifier, - STATE(1927), 1, - sym_generic_type, - STATE(2052), 1, - sym_where_predicate, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2833), 2, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2898), 29, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(2841), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(2263), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2839), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [32738] = 3, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32783] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2851), 15, + ACTIONS(2904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97627,7 +99130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2849), 29, + ACTIONS(2902), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97657,11 +99160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32791] = 3, + [32836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2855), 15, + ACTIONS(2908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97677,7 +99180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2853), 29, + ACTIONS(2906), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97707,11 +99210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32844] = 3, + [32889] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2859), 15, + ACTIONS(2912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97727,7 +99230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2857), 29, + ACTIONS(2910), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97757,11 +99260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32897] = 3, + [32942] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2863), 15, + ACTIONS(2916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97777,7 +99280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2861), 29, + ACTIONS(2914), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97807,11 +99310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32950] = 3, + [32995] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(608), 15, + ACTIONS(2920), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97827,7 +99330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(606), 29, + ACTIONS(2918), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97857,11 +99360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33003] = 3, + [33048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2867), 15, + ACTIONS(2924), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97877,7 +99380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2865), 29, + ACTIONS(2922), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97907,11 +99410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33056] = 3, + [33101] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(662), 15, + ACTIONS(2928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97927,7 +99430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(660), 29, + ACTIONS(2926), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97957,11 +99460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33109] = 3, + [33154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(312), 15, + ACTIONS(322), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97977,7 +99480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(310), 29, + ACTIONS(320), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98007,11 +99510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33162] = 3, + [33207] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2871), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98027,7 +99530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2869), 29, + ACTIONS(570), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98057,24 +99560,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33215] = 3, + [33260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2875), 12, + ACTIONS(2586), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2584), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33313] = 21, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(900), 1, anon_sym_COLON_COLON, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, + anon_sym_STAR, + ACTIONS(2884), 1, + anon_sym_for, + ACTIONS(2886), 1, anon_sym_AMP, + ACTIONS(2888), 1, sym_metavariable, - ACTIONS(2873), 32, + STATE(1855), 1, + sym_scoped_type_identifier, + STATE(1923), 1, + sym_generic_type, + STATE(1958), 1, + sym_where_predicate, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2550), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2882), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2930), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(2316), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2880), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98092,26 +99678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33268] = 3, + [33402] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2295), 15, + ACTIONS(2934), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98127,7 +99698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2297), 29, + ACTIONS(2932), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98157,11 +99728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33321] = 3, + [33455] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(654), 15, + ACTIONS(2938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98177,7 +99748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(652), 29, + ACTIONS(2936), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98207,62 +99778,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33374] = 4, - ACTIONS(2881), 1, - anon_sym_RBRACE, + [33508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2879), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2877), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33429] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2546), 15, + ACTIONS(2347), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98278,7 +99798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(2349), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98308,11 +99828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33482] = 3, + [33561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(650), 15, + ACTIONS(2942), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98328,7 +99848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(648), 29, + ACTIONS(2940), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98358,11 +99878,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33535] = 3, + [33614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 15, + ACTIONS(606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98378,7 +99898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2883), 29, + ACTIONS(604), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98408,11 +99928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33588] = 3, + [33667] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2889), 15, + ACTIONS(2946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98428,7 +99948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2887), 29, + ACTIONS(2944), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98458,79 +99978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33641] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, - sym_identifier, - ACTIONS(2835), 1, - anon_sym_LPAREN, - ACTIONS(2837), 1, - anon_sym_STAR, - ACTIONS(2843), 1, - anon_sym_for, - ACTIONS(2845), 1, - anon_sym_AMP, - ACTIONS(2847), 1, - sym_metavariable, - STATE(1848), 1, - sym_scoped_type_identifier, - STATE(1927), 1, - sym_generic_type, - STATE(2052), 1, - sym_where_predicate, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_scoped_identifier, + [33720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2841), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2891), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(2263), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2839), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [33730] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(670), 15, + ACTIONS(2419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98546,7 +99998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(668), 29, + ACTIONS(2421), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98576,11 +100028,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33783] = 3, + [33773] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2895), 15, + ACTIONS(2950), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98596,7 +100048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2893), 29, + ACTIONS(2948), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98626,11 +100078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33836] = 3, + [33826] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 15, + ACTIONS(2954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98646,7 +100098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2897), 29, + ACTIONS(2952), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98676,11 +100128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33889] = 3, + [33879] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2903), 15, + ACTIONS(2628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98696,7 +100148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2901), 29, + ACTIONS(2626), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98726,11 +100178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33942] = 3, + [33932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(666), 15, + ACTIONS(2958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98746,7 +100198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(664), 29, + ACTIONS(2956), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98776,11 +100228,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33995] = 3, + [33985] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2907), 15, + ACTIONS(2962), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98796,7 +100248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2905), 29, + ACTIONS(2960), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98826,11 +100278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34048] = 3, + [34038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2911), 15, + ACTIONS(2966), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98846,7 +100298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2909), 29, + ACTIONS(2964), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98876,11 +100328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34101] = 3, + [34091] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2915), 15, + ACTIONS(2970), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98896,7 +100348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2913), 29, + ACTIONS(2968), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98926,11 +100378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34154] = 3, + [34144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2919), 15, + ACTIONS(2974), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98946,7 +100398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2917), 29, + ACTIONS(2972), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98976,11 +100428,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34207] = 3, + [34197] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2923), 15, + ACTIONS(584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98996,7 +100448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2921), 29, + ACTIONS(582), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99026,11 +100478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34260] = 3, + [34250] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(658), 15, + ACTIONS(2978), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99046,7 +100498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(656), 29, + ACTIONS(2976), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99076,11 +100528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34313] = 3, + [34303] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 15, + ACTIONS(2982), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99096,7 +100548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2506), 29, + ACTIONS(2980), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99126,61 +100578,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34366] = 3, + [34356] = 4, + ACTIONS(2988), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(576), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2986), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(574), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34419] = 3, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2984), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34411] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2927), 15, + ACTIONS(2992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99196,7 +100649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2925), 29, + ACTIONS(2990), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99226,11 +100679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34472] = 3, + [34464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(678), 15, + ACTIONS(2996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99246,7 +100699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(676), 29, + ACTIONS(2994), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99276,11 +100729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34525] = 3, + [34517] = 4, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2931), 15, + ACTIONS(2590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99296,11 +100751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2929), 29, + ACTIONS(2588), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -99326,11 +100780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34578] = 3, + [34572] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2935), 15, + ACTIONS(3000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99346,7 +100800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2933), 29, + ACTIONS(2998), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99376,11 +100830,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34631] = 3, + [34625] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(588), 15, + ACTIONS(3004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99396,7 +100850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(586), 29, + ACTIONS(3002), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99426,11 +100880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34684] = 3, + [34678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(600), 15, + ACTIONS(3008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99446,7 +100900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(598), 29, + ACTIONS(3006), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99476,11 +100930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34737] = 3, + [34731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 15, + ACTIONS(576), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99496,7 +100950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(594), 29, + ACTIONS(574), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99526,111 +100980,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34790] = 3, + [34784] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2937), 29, + ACTIONS(3012), 12, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34843] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2943), 15, - anon_sym_PLUS, anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2941), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34896] = 3, + sym_metavariable, + ACTIONS(3010), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34837] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2947), 15, + ACTIONS(3016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99646,7 +101050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2945), 29, + ACTIONS(3014), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99676,11 +101080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34949] = 3, + [34890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2951), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99696,7 +101100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2949), 29, + ACTIONS(566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99726,11 +101130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35002] = 3, + [34943] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(634), 15, + ACTIONS(3020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99746,7 +101150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(632), 29, + ACTIONS(3018), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99776,11 +101180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35055] = 3, + [34996] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, + ACTIONS(3024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99796,7 +101200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2502), 29, + ACTIONS(3022), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99826,11 +101230,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35108] = 3, + [35049] = 5, + ACTIONS(3026), 1, + anon_sym_POUND, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1140), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2507), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2505), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35106] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(560), 15, + ACTIONS(3031), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99846,7 +101302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(558), 29, + ACTIONS(3029), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99876,61 +101332,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35161] = 3, + [35159] = 4, + ACTIONS(3037), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2955), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3035), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2953), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3033), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, [35214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2959), 15, + ACTIONS(3041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99946,7 +101403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2957), 29, + ACTIONS(3039), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99980,42 +101437,105 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2963), 15, - anon_sym_PLUS, + ACTIONS(3045), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3043), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35320] = 17, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3055), 1, + anon_sym_EQ, + ACTIONS(3059), 1, anon_sym_AMP, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, + ACTIONS(3071), 1, anon_sym_CARET, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3051), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3057), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3061), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3053), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2961), 29, + ACTIONS(3073), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3047), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100026,50 +101546,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35320] = 17, - ACTIONS(2967), 1, + [35400] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2973), 1, - anon_sym_EQ, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, + ACTIONS(3081), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2965), 19, + ACTIONS(3079), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100089,49 +101609,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35400] = 7, - ACTIONS(2967), 1, + [35480] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2999), 13, + ACTIONS(3051), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3061), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3053), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2997), 25, + ACTIONS(3073), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3083), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100142,11 +101675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35460] = 3, + [35566] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2698), 14, + ACTIONS(2986), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -100161,7 +101694,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2696), 29, + ACTIONS(2984), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100191,85 +101724,68 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35512] = 20, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2981), 1, - anon_sym_DOT_DOT, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, + [35618] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2979), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3001), 7, - anon_sym_SEMI, + ACTIONS(3035), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35598] = 7, - ACTIONS(2548), 1, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3033), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35670] = 7, + ACTIONS(2638), 1, anon_sym_LBRACE, - ACTIONS(2550), 1, + ACTIONS(2640), 1, anon_sym_COLON_COLON, - ACTIONS(3011), 1, + ACTIONS(3093), 1, anon_sym_BANG, - STATE(1094), 1, + STATE(1117), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100285,7 +101801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 24, + ACTIONS(564), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -100310,20 +101826,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35658] = 7, - ACTIONS(2967), 1, + [35730] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3015), 13, + ACTIONS(3097), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100337,7 +101853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3013), 25, + ACTIONS(3095), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100363,113 +101879,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35718] = 17, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(2967), 1, + [35790] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35798] = 8, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2981), 1, - anon_sym_DOT_DOT, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2979), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3019), 10, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3017), 25, + ACTIONS(3099), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100480,50 +101945,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35860] = 17, - ACTIONS(2967), 1, + [35876] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3023), 1, + ACTIONS(3103), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3021), 19, + ACTIONS(3101), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100543,34 +102008,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35940] = 7, - ACTIONS(2967), 1, + [35956] = 9, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(3051), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3019), 13, - anon_sym_PLUS, + ACTIONS(3053), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3107), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3017), 25, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100596,50 +102063,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36000] = 17, - ACTIONS(2967), 1, + [36020] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3061), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3111), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3025), 19, + ACTIONS(3109), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100649,69 +102100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36080] = 17, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2981), 1, - anon_sym_DOT_DOT, - ACTIONS(2983), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3031), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2979), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3029), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100722,40 +102116,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36160] = 13, - ACTIONS(2967), 1, + [36080] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3115), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3019), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3017), 25, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3113), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100781,62 +102169,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36232] = 20, - ACTIONS(2967), 1, + [36140] = 17, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3033), 7, + ACTIONS(282), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100847,86 +102232,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36318] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2879), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, + [36220] = 11, + ACTIONS(3049), 1, anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(3059), 1, anon_sym_AMP, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2877), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36370] = 10, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2981), 1, - anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 6, + ACTIONS(3107), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3017), 25, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100952,46 +102289,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36436] = 15, - ACTIONS(2967), 1, + [36288] = 8, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3019), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3107), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3105), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3017), 21, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36350] = 7, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3063), 1, + anon_sym_DOT_DOT, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3061), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3107), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101003,6 +102382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101013,48 +102396,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36512] = 16, - ACTIONS(2967), 1, + [36410] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2987), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3019), 1, + ACTIONS(3119), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3017), 20, + ACTIONS(3117), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101064,7 +102449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101075,39 +102459,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36590] = 12, - ACTIONS(2967), 1, + [36490] = 13, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2989), 1, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 4, + ACTIONS(3107), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3017), 25, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101133,34 +102518,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36660] = 7, - ACTIONS(2967), 1, + [36562] = 10, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(3051), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 13, - anon_sym_PLUS, + ACTIONS(3075), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3053), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3107), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3035), 25, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101186,38 +102574,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36720] = 11, - ACTIONS(2967), 1, + [36628] = 17, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3063), 1, + anon_sym_DOT_DOT, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3123), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3051), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3057), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3061), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3075), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3053), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3073), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3121), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36708] = 12, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 5, + ACTIONS(3107), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3017), 25, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101243,36 +102695,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36788] = 9, - ACTIONS(2967), 1, + [36778] = 15, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, + ACTIONS(3107), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(3057), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3075), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3017), 25, + ACTIONS(3073), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3105), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101284,10 +102746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101298,50 +102756,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36852] = 17, - ACTIONS(2967), 1, + [36854] = 16, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3041), 1, + ACTIONS(3107), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3039), 19, + ACTIONS(3105), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101351,6 +102807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101366,49 +102823,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2245), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2835), 1, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2837), 1, + ACTIONS(2878), 1, anon_sym_STAR, - ACTIONS(2843), 1, + ACTIONS(2884), 1, anon_sym_for, - ACTIONS(2845), 1, + ACTIONS(2886), 1, anon_sym_AMP, - ACTIONS(2847), 1, + ACTIONS(2888), 1, sym_metavariable, - STATE(1848), 1, + STATE(1855), 1, sym_scoped_type_identifier, - STATE(1927), 1, - sym_generic_type, - STATE(2052), 1, + STATE(1859), 1, sym_where_predicate, - STATE(2347), 1, + STATE(1923), 1, + sym_generic_type, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2550), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2841), 2, + ACTIONS(2882), 2, anon_sym_default, anon_sym_union, ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(2263), 5, + STATE(2316), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2839), 17, + ACTIONS(2880), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101437,32 +102894,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, + ACTIONS(2888), 1, sym_metavariable, - ACTIONS(3043), 1, + ACTIONS(3125), 1, sym_identifier, - ACTIONS(3045), 1, + ACTIONS(3127), 1, anon_sym_default, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1330), 1, + STATE(1349), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1380), 1, sym_generic_type, - STATE(1389), 1, + STATE(1396), 1, sym_function_type, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, - STATE(2497), 1, + STATE(2550), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -101473,7 +102930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2841), 18, + ACTIONS(2882), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101492,54 +102949,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37104] = 21, + [37104] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(3047), 1, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(3051), 1, - anon_sym_default, - ACTIONS(3053), 1, + ACTIONS(2876), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, + anon_sym_STAR, + ACTIONS(2884), 1, + anon_sym_for, + ACTIONS(2886), 1, + anon_sym_AMP, + ACTIONS(2888), 1, sym_metavariable, - STATE(748), 1, + STATE(1855), 1, sym_scoped_type_identifier, - STATE(872), 1, + STATE(1923), 1, sym_generic_type, - STATE(1107), 1, - sym_function_type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2353), 1, - sym_function_modifiers, - STATE(2378), 1, - sym_scoped_identifier, - STATE(2456), 1, + STATE(1958), 1, + sym_where_predicate, + STATE(2370), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2550), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2401), 3, + sym_line_comment, + ACTIONS(2882), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - ACTIONS(3049), 18, + STATE(2316), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2880), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101557,50 +103014,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_union, - [37191] = 17, + [37189] = 6, + ACTIONS(2594), 1, + anon_sym_BANG, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, + ACTIONS(3129), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2590), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2588), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37246] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3131), 1, sym_identifier, - ACTIONS(3057), 1, - anon_sym_RPAREN, - ACTIONS(3061), 1, - anon_sym_COMMA, - ACTIONS(3065), 1, + ACTIONS(3135), 1, + anon_sym_default, + ACTIONS(3137), 1, sym_metavariable, - STATE(1577), 1, + STATE(766), 1, + sym_scoped_type_identifier, + STATE(854), 1, + sym_generic_type, + STATE(1107), 1, + sym_function_type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2376), 1, + sym_function_modifiers, + STATE(2401), 1, sym_scoped_identifier, - STATE(2341), 1, - sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2479), 1, sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1070), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2078), 2, - sym_meta_item, - sym__literal, - ACTIONS(3063), 3, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3059), 19, + ACTIONS(3133), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101618,24 +103130,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, anon_sym_union, - [37270] = 3, + [37333] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2905), 10, + ACTIONS(1272), 10, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_PLUS, anon_sym_STAR, anon_sym_SQUOTE, + anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2907), 32, + ACTIONS(1274), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101659,67 +103170,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, + anon_sym_pub, anon_sym_union, anon_sym_unsafe, anon_sym_extern, anon_sym_dyn, - sym_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [37321] = 6, - ACTIONS(2540), 1, - anon_sym_BANG, - ACTIONS(2542), 1, - anon_sym_COLON_COLON, - ACTIONS(3067), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2536), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2534), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37378] = 21, + [37384] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(700), 1, @@ -101730,32 +103190,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, + ACTIONS(2888), 1, sym_metavariable, - ACTIONS(3045), 1, + ACTIONS(3127), 1, anon_sym_default, - ACTIONS(3069), 1, + ACTIONS(3139), 1, sym_identifier, - STATE(1188), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1332), 1, + STATE(1348), 1, sym_scoped_type_identifier, - STATE(1373), 1, - sym_generic_type, STATE(1381), 1, + sym_generic_type, + STATE(1399), 1, sym_function_type, - STATE(2347), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2404), 1, + STATE(2411), 1, sym_function_modifiers, - STATE(2497), 1, + STATE(2550), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -101766,7 +103226,41 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2841), 18, + ACTIONS(2882), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [37471] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2972), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2974), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101784,55 +103278,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [37465] = 20, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37522] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(900), 1, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(2835), 1, - anon_sym_LPAREN, - ACTIONS(2837), 1, - anon_sym_STAR, - ACTIONS(2843), 1, - anon_sym_for, - ACTIONS(2845), 1, - anon_sym_AMP, - ACTIONS(2847), 1, + ACTIONS(3143), 1, + anon_sym_RPAREN, + ACTIONS(3147), 1, + anon_sym_COMMA, + ACTIONS(3151), 1, sym_metavariable, - STATE(1848), 1, - sym_scoped_type_identifier, - STATE(1853), 1, - sym_where_predicate, - STATE(1927), 1, - sym_generic_type, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(1597), 1, sym_scoped_identifier, + STATE(2357), 1, + sym_generic_type_with_turbofish, + STATE(2476), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2841), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(906), 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1074), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1913), 2, + sym_meta_item, + sym__literal, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - STATE(2263), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2839), 17, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101850,54 +103353,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37550] = 21, + anon_sym_default, + anon_sym_union, + [37601] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2385), 1, + ACTIONS(2475), 1, anon_sym_fn, - ACTIONS(2393), 1, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(3051), 1, + ACTIONS(3135), 1, anon_sym_default, - ACTIONS(3053), 1, + ACTIONS(3137), 1, sym_metavariable, - ACTIONS(3071), 1, + ACTIONS(3153), 1, sym_identifier, - STATE(747), 1, + STATE(775), 1, sym_scoped_type_identifier, - STATE(880), 1, + STATE(839), 1, sym_generic_type, - STATE(1121), 1, + STATE(1118), 1, sym_function_type, - STATE(1182), 1, + STATE(1207), 1, sym_for_lifetimes, - STATE(2353), 1, + STATE(2376), 1, sym_function_modifiers, - STATE(2378), 1, + STATE(2401), 1, sym_scoped_identifier, - STATE(2456), 1, + STATE(2479), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, - ACTIONS(3049), 18, + ACTIONS(3133), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101916,22 +103421,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37637] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1174), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, + [37688] = 16, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3141), 1, + sym_identifier, + ACTIONS(3151), 1, sym_metavariable, - ACTIONS(1176), 32, + ACTIONS(3155), 1, + anon_sym_RPAREN, + STATE(1597), 1, + sym_scoped_identifier, + STATE(2357), 1, + sym_generic_type_with_turbofish, + STATE(2476), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1074), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2213), 2, + sym_meta_item, + sym__literal, + ACTIONS(3149), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101949,32 +103479,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, + [37764] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(732), 1, + anon_sym_DASH, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(966), 1, + anon_sym_COLON_COLON, + ACTIONS(3157), 1, sym_identifier, + ACTIONS(3163), 1, + sym_metavariable, + STATE(1442), 1, + sym_scoped_identifier, + STATE(1451), 1, + sym__literal_pattern, + STATE(2357), 1, + sym_generic_type_with_turbofish, + STATE(2362), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3161), 3, sym_self, sym_super, sym_crate, - [37688] = 6, - ACTIONS(2488), 1, + STATE(1421), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(734), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3159), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [37840] = 6, + ACTIONS(2570), 1, anon_sym_BANG, - ACTIONS(3073), 1, + ACTIONS(3165), 1, anon_sym_COLON_COLON, - STATE(1094), 1, + STATE(1117), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101990,7 +103567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 23, + ACTIONS(564), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102014,47 +103591,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37744] = 16, + [37896] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, + ACTIONS(732), 1, + anon_sym_DASH, + ACTIONS(736), 1, aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3167), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3173), 1, sym_metavariable, - ACTIONS(3075), 1, - anon_sym_RPAREN, - STATE(1577), 1, + STATE(1445), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(1462), 1, + sym__literal_pattern, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2362), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, + ACTIONS(738), 2, anon_sym_true, anon_sym_false, - STATE(1070), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2184), 2, - sym_meta_item, - sym__literal, - ACTIONS(3063), 3, + ACTIONS(3171), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, + STATE(1421), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(734), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3059), 19, + ACTIONS(3169), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102074,47 +103651,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37820] = 16, - ACTIONS(77), 1, + [37972] = 5, + ACTIONS(2762), 1, + anon_sym_COLON_COLON, + ACTIONS(3093), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(562), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - ACTIONS(732), 1, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(736), 1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(564), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38026] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3077), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3083), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1413), 1, + ACTIONS(3175), 1, + anon_sym_RPAREN, + STATE(1597), 1, sym_scoped_identifier, - STATE(1464), 1, - sym__literal_pattern, - STATE(2339), 1, - sym_bracketed_type, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, + STATE(2476), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(738), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3081), 3, + STATE(1074), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2213), 2, + sym_meta_item, + sym__literal, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - STATE(1375), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, + ACTIONS(91), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3079), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102134,47 +103760,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37896] = 16, + [38102] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2602), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2604), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38151] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2614), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2616), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38200] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(732), 1, - anon_sym_DASH, - ACTIONS(736), 1, + ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3085), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3091), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1422), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(1440), 1, - sym__literal_pattern, - STATE(2339), 1, - sym_bracketed_type, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, + STATE(2476), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(738), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 3, + STATE(1074), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2213), 2, + sym_meta_item, + sym__literal, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - STATE(1375), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, + ACTIONS(91), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3087), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102194,15 +103910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37972] = 5, - ACTIONS(2594), 1, - anon_sym_COLON_COLON, - ACTIONS(3011), 1, + [38273] = 5, + ACTIONS(2570), 1, anon_sym_BANG, + ACTIONS(3177), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102218,10 +103934,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 24, - anon_sym_SEMI, + ACTIONS(564), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -102243,47 +103958,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38026] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3055), 1, - sym_identifier, - ACTIONS(3065), 1, - sym_metavariable, - ACTIONS(3093), 1, - anon_sym_RPAREN, - STATE(1577), 1, - sym_scoped_identifier, - STATE(2341), 1, - sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_bracketed_type, + [38326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1070), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2184), 2, - sym_meta_item, - sym__literal, - ACTIONS(3063), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3059), 19, + ACTIONS(3181), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3179), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102301,14 +103990,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [38102] = 3, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38375] = 4, + ACTIONS(3185), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3097), 9, - anon_sym_LPAREN, + ACTIONS(3187), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -102317,7 +104019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3095), 31, + ACTIONS(3183), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102349,80 +104051,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38151] = 23, - ACTIONS(368), 1, - anon_sym_RBRACK, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3099), 1, - anon_sym_SEMI, - ACTIONS(3101), 1, - anon_sym_COMMA, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - STATE(2094), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38240] = 3, + [38426] = 5, + ACTIONS(2658), 1, + anon_sym_BANG, + ACTIONS(3189), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 16, + ACTIONS(2590), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102436,13 +104075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2532), 24, + ACTIONS(2588), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -102461,11 +104099,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38289] = 3, + [38479] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3193), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3191), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38528] = 4, + ACTIONS(3195), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3187), 8, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3183), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38579] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 16, + ACTIONS(2622), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -102482,7 +104213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2516), 24, + ACTIONS(2624), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102507,11 +104238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38338] = 3, + [38628] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2522), 16, + ACTIONS(2634), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -102528,7 +104259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2524), 24, + ACTIONS(2636), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102553,62 +104284,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38387] = 23, - ACTIONS(552), 1, + [38677] = 23, + ACTIONS(374), 1, anon_sym_RBRACK, - ACTIONS(2967), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3107), 1, + ACTIONS(3197), 1, anon_sym_SEMI, - ACTIONS(3109), 1, + ACTIONS(3199), 1, anon_sym_COMMA, - STATE(1869), 1, + ACTIONS(3203), 1, + anon_sym_DOT_DOT, + STATE(2064), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102619,11 +104350,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38476] = 3, + [38766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2809), 9, + ACTIONS(2858), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -102633,7 +104364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2807), 31, + ACTIONS(2856), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102665,22 +104396,87 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38525] = 4, - ACTIONS(3115), 1, - anon_sym_COLON_COLON, + [38815] = 23, + ACTIONS(554), 1, + anon_sym_RBRACK, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, + anon_sym_DOT_DOT, + ACTIONS(3205), 1, + anon_sym_SEMI, + ACTIONS(3207), 1, + anon_sym_COMMA, + STATE(2014), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3051), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3057), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3075), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3073), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3091), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38904] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3113), 8, + ACTIONS(2834), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3111), 31, + ACTIONS(2832), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102712,13 +104508,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38576] = 4, - ACTIONS(3117), 1, - anon_sym_LPAREN, + [38953] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3113), 8, + ACTIONS(3211), 9, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -102727,7 +104522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3111), 31, + ACTIONS(3209), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102759,21 +104554,112 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38627] = 3, + [39002] = 22, + ACTIONS(386), 1, + anon_sym_RPAREN, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, + anon_sym_DOT_DOT, + ACTIONS(3213), 1, + anon_sym_COMMA, + STATE(1943), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3121), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3051), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3057), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3075), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3073), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3091), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39088] = 18, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(900), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(2888), 1, sym_metavariable, - ACTIONS(3119), 31, + ACTIONS(3127), 1, + anon_sym_default, + ACTIONS(3215), 1, + sym_identifier, + ACTIONS(3217), 1, + anon_sym_fn, + STATE(1835), 1, + sym_scoped_type_identifier, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_generic_type, + STATE(2542), 1, + sym_function_modifiers, + STATE(2550), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2882), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102791,56 +104677,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38676] = 3, + [39166] = 4, + ACTIONS(2726), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2688), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2684), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39216] = 4, + ACTIONS(3189), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2590), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2588), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39266] = 22, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, + anon_sym_DOT_DOT, + ACTIONS(3219), 1, + anon_sym_RPAREN, + ACTIONS(3221), 1, + anon_sym_COMMA, + STATE(2052), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2556), 16, + ACTIONS(3051), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2558), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3053), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102851,15 +104834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38725] = 5, - ACTIONS(2592), 1, - anon_sym_BANG, - ACTIONS(3123), 1, + [39352] = 4, + ACTIONS(2686), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102875,7 +104856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2534), 23, + ACTIONS(2684), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102899,61 +104880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38778] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3127), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3125), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38827] = 5, - ACTIONS(2488), 1, - anon_sym_BANG, - ACTIONS(3129), 1, + [39402] = 4, + ACTIONS(3223), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102969,7 +104902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 23, + ACTIONS(564), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102993,45 +104926,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38880] = 15, + [39452] = 18, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, - sym_identifier, - ACTIONS(3065), 1, + ACTIONS(2888), 1, sym_metavariable, - STATE(1577), 1, - sym_scoped_identifier, - STATE(2341), 1, - sym_generic_type_with_turbofish, - STATE(2453), 1, + ACTIONS(3127), 1, + anon_sym_default, + ACTIONS(3225), 1, + sym_identifier, + ACTIONS(3227), 1, + anon_sym_fn, + STATE(1797), 1, + sym_scoped_type_identifier, + STATE(2370), 1, sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2403), 1, + sym_function_modifiers, + STATE(2425), 1, + sym_generic_type, + STATE(2550), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1070), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2184), 2, - sym_meta_item, - sym__literal, - ACTIONS(3063), 3, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3059), 19, + ACTIONS(2882), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103049,90 +104985,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, anon_sym_union, - [38953] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2875), 9, - anon_sym_LPAREN, + [39530] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(2873), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39002] = 4, - ACTIONS(2636), 1, - anon_sym_COLON_COLON, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(1088), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 15, + ACTIONS(3229), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(3239), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3255), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39613] = 21, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, anon_sym_PIPE, + ACTIONS(3249), 1, anon_sym_CARET, + ACTIONS(3257), 1, + anon_sym_LBRACE, + STATE(239), 1, + sym_match_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3239), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3231), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2602), 23, - anon_sym_LPAREN, + ACTIONS(3251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3255), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39696] = 21, + ACTIONS(586), 1, anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, + ACTIONS(3087), 1, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(244), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3239), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103143,80 +105172,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39052] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(2847), 1, - sym_metavariable, - ACTIONS(3045), 1, - anon_sym_default, - ACTIONS(3131), 1, - sym_identifier, - ACTIONS(3133), 1, - anon_sym_fn, - STATE(1829), 1, - sym_scoped_type_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2380), 1, - sym_function_modifiers, - STATE(2417), 1, - sym_generic_type, - STATE(2497), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2841), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [39130] = 4, - ACTIONS(3123), 1, - anon_sym_COLON_COLON, + [39779] = 7, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3261), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3107), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -103224,21 +105199,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2534), 23, + ACTIONS(3105), 20, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39834] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, + ACTIONS(3087), 1, anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3051), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3057), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3075), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3263), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3053), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3073), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3091), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39915] = 21, + ACTIONS(586), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(216), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3239), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103249,42 +105343,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39180] = 4, - ACTIONS(3135), 1, - anon_sym_COLON_COLON, + [39998] = 21, + ACTIONS(586), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(231), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(3229), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3239), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3255), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40081] = 21, + ACTIONS(264), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, + ACTIONS(3203), 1, + anon_sym_DOT_DOT, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3051), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3053), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103295,60 +105467,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39230] = 22, - ACTIONS(2967), 1, + [40164] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3137), 1, - anon_sym_RPAREN, - ACTIONS(3139), 1, + ACTIONS(3267), 1, + anon_sym_RBRACE, + ACTIONS(3269), 1, anon_sym_COMMA, - STATE(1892), 1, - aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103359,60 +105529,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39316] = 22, - ACTIONS(382), 1, - anon_sym_RPAREN, - ACTIONS(2967), 1, + [40247] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3141), 1, - anon_sym_COMMA, - STATE(2032), 1, - aux_sym_arguments_repeat1, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(167), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103423,20 +105591,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39402] = 4, - ACTIONS(2604), 1, - anon_sym_COLON_COLON, + [40330] = 7, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3261), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 15, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3097), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -103444,15 +105618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2602), 23, + ACTIONS(3095), 20, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -103469,48 +105639,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39452] = 18, + [40385] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(900), 1, + ACTIONS(3271), 1, + sym_identifier, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(3275), 1, + anon_sym_RBRACE, + ACTIONS(3277), 1, + anon_sym_STAR, + ACTIONS(3281), 1, + anon_sym_COMMA, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, + ACTIONS(3287), 1, sym_metavariable, - ACTIONS(3045), 1, - anon_sym_default, - ACTIONS(3143), 1, - sym_identifier, - ACTIONS(3145), 1, - anon_sym_fn, - STATE(1808), 1, - sym_scoped_type_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_generic_type, - STATE(2497), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2535), 1, - sym_function_modifiers, + STATE(2357), 1, + sym_generic_type_with_turbofish, + STATE(2476), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - ACTIONS(2841), 18, + STATE(1985), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103528,55 +105693,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_default, anon_sym_union, - [39530] = 17, - ACTIONS(2967), 1, + [40456] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2973), 1, - anon_sym_EQ, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3289), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2965), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103587,58 +105756,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39605] = 21, + [40537] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(1106), 1, + STATE(1049), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103649,58 +105818,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39688] = 21, - ACTIONS(2967), 1, + [40620] = 21, + ACTIONS(272), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3265), 1, anon_sym_SEMI, - ACTIONS(3181), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103711,57 +105880,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39771] = 20, - ACTIONS(2967), 1, + [40703] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(46), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3183), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103772,58 +105942,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39852] = 21, - ACTIONS(270), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + [40786] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3101), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103834,58 +106000,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39935] = 21, - ACTIONS(2967), 1, + [40861] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, - ACTIONS(3185), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3115), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3113), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103896,54 +106048,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40018] = 17, - ACTIONS(2967), 1, + [40916] = 21, + ACTIONS(392), 1, + anon_sym_RPAREN, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3023), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, + anon_sym_DOT_DOT, + ACTIONS(3291), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3021), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103954,58 +106110,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40093] = 21, - ACTIONS(276), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + [40999] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(1072), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104016,58 +106172,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40176] = 21, - ACTIONS(610), 1, + [41082] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(244), 1, + STATE(99), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104078,58 +106234,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40259] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [41165] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3055), 1, + anon_sym_EQ, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - STATE(243), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3047), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104140,58 +106292,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40342] = 21, - ACTIONS(2967), 1, + [41240] = 21, + ACTIONS(586), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3187), 1, - anon_sym_RBRACE, - ACTIONS(3189), 1, - anon_sym_COMMA, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(224), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104202,58 +106354,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40425] = 21, - ACTIONS(494), 1, - anon_sym_RPAREN, - ACTIONS(2967), 1, + [41323] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3191), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3293), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104264,58 +106415,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40508] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [41404] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(241), 1, - sym_block, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104326,58 +106477,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40591] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [41487] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - STATE(216), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3083), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104388,58 +106538,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40674] = 21, - ACTIONS(610), 1, + [41568] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(222), 1, + STATE(1051), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104450,58 +106600,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40757] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [41651] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(160), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3297), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104512,58 +106661,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40840] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [41732] = 16, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - STATE(227), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3105), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104574,58 +106718,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40923] = 21, - ACTIONS(260), 1, + [41805] = 21, + ACTIONS(107), 1, anon_sym_RBRACE, - ACTIONS(2967), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3265), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104636,34 +106780,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41006] = 7, - ACTIONS(2967), 1, + [41888] = 9, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3155), 2, + ACTIONS(3229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3015), 13, - anon_sym_PLUS, + ACTIONS(3231), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3107), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3013), 20, + ACTIONS(3105), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -104684,57 +106830,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41061] = 20, - ACTIONS(2967), 1, + [41947] = 21, + ACTIONS(586), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(232), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3193), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104745,57 +106892,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41142] = 20, - ACTIONS(2967), 1, + [42030] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, + STATE(780), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104806,45 +106954,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41223] = 17, + [42113] = 17, ACTIONS(288), 1, anon_sym_EQ, - ACTIONS(2967), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3153), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, + ACTIONS(3261), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -104864,58 +107012,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41298] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [42188] = 15, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, - anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - STATE(760), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3105), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104926,58 +107068,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41381] = 21, - ACTIONS(2967), 1, + [42259] = 10, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3195), 1, - anon_sym_RBRACE, - ACTIONS(3197), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3107), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3105), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104988,58 +107119,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41464] = 21, - ACTIONS(2967), 1, + [42320] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, - ACTIONS(3199), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3111), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3109), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105050,58 +107167,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41547] = 21, - ACTIONS(15), 1, + [42375] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(45), 1, + STATE(1085), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105112,58 +107229,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41630] = 21, - ACTIONS(2967), 1, + [42458] = 13, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, - anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3201), 1, - anon_sym_LBRACE, - STATE(1110), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3107), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3105), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105174,58 +107283,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41713] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [42525] = 21, + ACTIONS(270), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(234), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105236,58 +107345,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41796] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [42608] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(1096), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3299), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105298,44 +107407,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41879] = 7, - ACTIONS(2967), 1, + [42691] = 21, + ACTIONS(586), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(215), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 13, + ACTIONS(3229), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3239), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3231), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3035), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105346,58 +107469,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41934] = 21, + [42774] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(166), 1, + STATE(113), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105408,50 +107531,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42017] = 17, - ACTIONS(2967), 1, + [42857] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3027), 1, + ACTIONS(3123), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, + ACTIONS(3261), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3025), 14, + ACTIONS(3121), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105466,58 +107589,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42092] = 21, - ACTIONS(15), 1, + [42932] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(131), 1, + STATE(785), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105528,106 +107651,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42175] = 21, - ACTIONS(2967), 1, + [43015] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3119), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3203), 1, - anon_sym_LBRACE, - STATE(235), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42258] = 7, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2999), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2997), 20, + ACTIONS(3117), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105638,44 +107709,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42313] = 7, - ACTIONS(2967), 1, + [43090] = 21, + ACTIONS(276), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, anon_sym_DOT_DOT, + ACTIONS(3265), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3019), 13, + ACTIONS(3051), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105686,58 +107771,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42368] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [43173] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(1120), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3301), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105748,58 +107833,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42451] = 21, - ACTIONS(15), 1, + [43256] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(81), 1, + STATE(1124), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105810,57 +107895,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42534] = 20, - ACTIONS(2967), 1, + [43339] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3303), 1, + anon_sym_LBRACE, + STATE(154), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3205), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105871,54 +107957,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42615] = 17, - ACTIONS(2967), 1, + [43422] = 21, + ACTIONS(586), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3041), 1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, + STATE(220), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3039), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105929,36 +108019,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42690] = 9, - ACTIONS(2967), 1, + [43505] = 12, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 8, + ACTIONS(3107), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3017), 20, + ACTIONS(3105), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105979,58 +108072,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42749] = 21, - ACTIONS(2967), 1, + [43570] = 11, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, - ACTIONS(3207), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3107), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3105), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106041,38 +108124,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42832] = 11, - ACTIONS(2967), 1, + [43633] = 8, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3153), 1, - anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 5, + ACTIONS(3107), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3017), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3105), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106093,58 +108173,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42895] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [43690] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(215), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3305), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106155,58 +108235,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42978] = 21, - ACTIONS(2967), 1, + [43773] = 21, + ACTIONS(260), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3265), 1, anon_sym_SEMI, - ACTIONS(3209), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106217,57 +108297,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43061] = 20, - ACTIONS(2967), 1, + [43856] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(168), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3211), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106278,57 +108359,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43142] = 20, - ACTIONS(2967), 1, + [43939] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 2, - anon_sym_RBRACE, + ACTIONS(3307), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106339,58 +108420,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43223] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [44020] = 21, + ACTIONS(498), 1, + anon_sym_RPAREN, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(1108), 1, - sym_block, + ACTIONS(3291), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106401,58 +108482,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43306] = 21, - ACTIONS(2967), 1, + [44103] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3215), 1, + ACTIONS(3309), 1, anon_sym_RPAREN, - ACTIONS(3217), 1, + ACTIONS(3311), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106463,58 +108544,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43389] = 21, - ACTIONS(266), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + [44186] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3265), 1, anon_sym_SEMI, + ACTIONS(3313), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106525,162 +108606,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43472] = 12, - ACTIONS(2967), 1, + [44269] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3153), 1, - anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3149), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3019), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3017), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3085), 1, anon_sym_QMARK, + ACTIONS(3087), 1, anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [43537] = 16, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3019), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3151), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3149), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3017), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [43610] = 15, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3019), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, + STATE(130), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3017), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106691,108 +108668,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43681] = 20, - ACTIONS(2967), 1, + [44352] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3315), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [43762] = 10, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3017), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106803,58 +108730,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43823] = 21, - ACTIONS(15), 1, + [44435] = 21, + ACTIONS(586), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(47), 1, + STATE(238), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106865,58 +108792,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43906] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [44518] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(765), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3317), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106927,111 +108853,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43989] = 20, - ACTIONS(2967), 1, + [44599] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, + ACTIONS(3319), 1, + anon_sym_RBRACE, + ACTIONS(3321), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44070] = 13, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3153), 1, - anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3019), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3149), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107042,58 +108915,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44137] = 21, - ACTIONS(274), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + [44682] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3265), 1, anon_sym_SEMI, + ACTIONS(3323), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107104,50 +108977,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44220] = 17, - ACTIONS(2967), 1, + [44765] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3031), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, + ACTIONS(3261), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3029), 14, + ACTIONS(3079), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107162,58 +109035,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44295] = 21, - ACTIONS(262), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + [44840] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(50), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107224,45 +109097,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44378] = 8, - ACTIONS(2967), 1, + [44923] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3019), 10, + ACTIONS(3051), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3325), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3053), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107273,58 +109158,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44435] = 21, - ACTIONS(2967), 1, + [45004] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, - ACTIONS(3223), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3327), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107335,57 +109219,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44518] = 20, - ACTIONS(2967), 1, + [45085] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, + STATE(150), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3033), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3147), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107396,58 +109281,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44599] = 21, - ACTIONS(2967), 1, + [45168] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3225), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3329), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107458,58 +109342,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44682] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [45249] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - STATE(1100), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3099), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107520,58 +109403,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44765] = 21, - ACTIONS(502), 1, - anon_sym_RPAREN, - ACTIONS(2967), 1, + [45330] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3191), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3331), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107582,58 +109464,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44848] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [45411] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(173), 1, - sym_block, + ACTIONS(3291), 1, + anon_sym_COMMA, + ACTIONS(3333), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107644,58 +109526,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44931] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [45494] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(142), 1, - sym_block, + ACTIONS(3335), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107706,58 +109586,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45014] = 21, - ACTIONS(2967), 1, + [45574] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3191), 1, + ACTIONS(3337), 1, anon_sym_COMMA, - ACTIONS(3227), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107768,57 +109646,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45097] = 20, - ACTIONS(2967), 1, + [45654] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, + ACTIONS(3339), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3229), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107829,58 +109706,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45178] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [45734] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(1033), 1, - sym_block, + ACTIONS(3341), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107891,57 +109766,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45261] = 20, - ACTIONS(2967), 1, + [45814] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, + ACTIONS(3343), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107952,57 +109826,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45342] = 20, - ACTIONS(2967), 1, + [45894] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, + ACTIONS(3345), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108013,43 +109886,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45423] = 15, + [45974] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3239), 1, - anon_sym_RBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3245), 1, - anon_sym_COMMA, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1715), 1, + ACTIONS(3347), 1, + anon_sym_RBRACE, + STATE(1773), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(1983), 5, + STATE(2250), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108069,116 +109940,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [45494] = 20, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3253), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45574] = 20, - ACTIONS(2967), 1, + [46042] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, - anon_sym_RBRACK, + ACTIONS(3291), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108189,56 +110000,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45654] = 20, - ACTIONS(2967), 1, + [46122] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, + ACTIONS(3349), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108249,56 +110060,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45734] = 20, - ACTIONS(2967), 1, + [46202] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3259), 1, + ACTIONS(3351), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108309,56 +110120,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45814] = 20, - ACTIONS(2967), 1, + [46282] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3353), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108369,56 +110180,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45894] = 20, - ACTIONS(2967), 1, + [46362] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3261), 1, - anon_sym_SEMI, + ACTIONS(3355), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108429,56 +110240,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45974] = 20, - ACTIONS(2967), 1, + [46442] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3263), 1, + ACTIONS(3357), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108489,116 +110300,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46054] = 20, - ACTIONS(2967), 1, + [46522] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, + ACTIONS(3359), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46134] = 20, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3191), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108609,110 +110360,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46214] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3235), 1, - sym_identifier, - ACTIONS(3237), 1, - anon_sym_LBRACE, - ACTIONS(3241), 1, - anon_sym_STAR, - ACTIONS(3247), 1, - anon_sym_COLON_COLON, - ACTIONS(3251), 1, - sym_metavariable, - ACTIONS(3267), 1, - anon_sym_RBRACE, - STATE(1715), 1, - sym_scoped_identifier, - STATE(2341), 1, - sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3249), 3, - sym_self, - sym_super, - sym_crate, - STATE(2197), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3243), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [46282] = 20, - ACTIONS(2967), 1, + [46602] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3361), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108723,56 +110420,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46362] = 20, - ACTIONS(2967), 1, + [46682] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3271), 1, + ACTIONS(3265), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108783,56 +110480,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46442] = 20, - ACTIONS(2967), 1, + [46762] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, - anon_sym_COMMA, + ACTIONS(3363), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108843,56 +110540,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46522] = 20, - ACTIONS(2967), 1, + [46842] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3275), 1, + ACTIONS(3365), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108903,56 +110600,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46602] = 20, - ACTIONS(2967), 1, + [46922] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3277), 1, - anon_sym_SEMI, + ACTIONS(3367), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108963,56 +110660,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46682] = 20, - ACTIONS(2967), 1, + [47002] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, + ACTIONS(3369), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109023,56 +110720,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46762] = 20, - ACTIONS(2967), 1, + [47082] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3281), 1, + ACTIONS(3371), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109083,116 +110780,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46842] = 20, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3283), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46922] = 20, - ACTIONS(2967), 1, + [47162] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(3373), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109203,56 +110840,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47002] = 20, - ACTIONS(2967), 1, + [47242] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3287), 1, - anon_sym_SEMI, + ACTIONS(3375), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109263,56 +110900,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47082] = 20, - ACTIONS(2967), 1, + [47322] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, + ACTIONS(3377), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109323,56 +110960,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47162] = 20, - ACTIONS(2967), 1, + [47402] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 1, + ACTIONS(3379), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109383,56 +111020,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47242] = 20, - ACTIONS(2967), 1, + [47482] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(3381), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109443,56 +111080,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47322] = 20, - ACTIONS(2967), 1, + [47562] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3295), 1, + ACTIONS(3383), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109503,116 +111140,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47402] = 20, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3297), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47482] = 20, - ACTIONS(2967), 1, + [47642] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3299), 1, + ACTIONS(3385), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109623,56 +111200,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47562] = 20, - ACTIONS(2967), 1, + [47722] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3301), 1, + ACTIONS(3387), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109683,56 +111260,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47642] = 20, - ACTIONS(2967), 1, + [47802] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3303), 1, + ACTIONS(3389), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109743,116 +111320,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47722] = 20, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3305), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47802] = 20, - ACTIONS(2967), 1, + [47882] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, + ACTIONS(3391), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109863,56 +111380,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47882] = 20, - ACTIONS(2967), 1, + [47962] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3309), 1, - anon_sym_COMMA, + ACTIONS(3393), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109923,41 +111440,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47962] = 14, + [48042] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - ACTIONS(3311), 1, + ACTIONS(3395), 1, anon_sym_RBRACE, - STATE(1715), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2197), 5, + STATE(2250), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109977,99 +111494,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48030] = 20, - ACTIONS(2967), 1, - anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_EQ, - ACTIONS(3105), 1, - anon_sym_DOT_DOT, - ACTIONS(3313), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2991), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, [48110] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1715), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2344), 5, + STATE(2428), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110092,36 +111549,36 @@ static const uint16_t ts_small_parse_table[] = { [48175] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1715), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2445), 5, + STATE(2358), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110144,36 +111601,36 @@ static const uint16_t ts_small_parse_table[] = { [48240] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1715), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2197), 5, + STATE(2250), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110196,36 +111653,36 @@ static const uint16_t ts_small_parse_table[] = { [48305] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1715), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2455), 5, + STATE(2521), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110248,36 +111705,36 @@ static const uint16_t ts_small_parse_table[] = { [48370] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1715), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2315), 5, + STATE(2474), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110301,11 +111758,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3399), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3315), 28, + ACTIONS(3397), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110338,11 +111795,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3321), 3, + ACTIONS(3403), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3319), 28, + ACTIONS(3401), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110375,11 +111832,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3325), 3, + ACTIONS(3407), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3323), 28, + ACTIONS(3405), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110413,26 +111870,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1577), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, STATE(2382), 1, sym_meta_item, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110457,26 +111914,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1577), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2341), 1, - sym_generic_type_with_turbofish, - STATE(2407), 1, + STATE(2336), 1, sym_meta_item, - STATE(2453), 1, + STATE(2357), 1, + sym_generic_type_with_turbofish, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110501,26 +111958,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1577), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2367), 1, - sym_meta_item, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, + STATE(2564), 1, + sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110545,26 +112002,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1577), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2423), 1, + STATE(2427), 1, sym_meta_item, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110589,26 +112046,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1577), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2323), 1, - sym_meta_item, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2402), 1, + sym_meta_item, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110633,26 +112090,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1577), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, - STATE(2515), 1, + STATE(2520), 1, sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110677,26 +112134,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1577), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2369), 1, + STATE(2454), 1, sym_meta_item, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110721,24 +112178,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3327), 1, + ACTIONS(3409), 1, sym_identifier, - ACTIONS(3333), 1, + ACTIONS(3415), 1, sym_metavariable, - STATE(2177), 1, + STATE(2322), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3331), 3, + ACTIONS(3413), 3, sym_self, sym_super, sym_crate, - ACTIONS(3329), 19, + ACTIONS(3411), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110763,24 +112220,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3335), 1, + ACTIONS(3417), 1, sym_identifier, - ACTIONS(3341), 1, + ACTIONS(3423), 1, sym_metavariable, - STATE(2268), 1, + STATE(2173), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3339), 3, + ACTIONS(3421), 3, sym_self, sym_super, sym_crate, - ACTIONS(3337), 19, + ACTIONS(3419), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110801,12 +112258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_union, [49044] = 3, - ACTIONS(2317), 1, + ACTIONS(2347), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2319), 20, + ACTIONS(2349), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110828,12 +112285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [49074] = 3, - ACTIONS(2295), 1, + ACTIONS(2419), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2297), 20, + ACTIONS(2421), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110854,57 +112311,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49104] = 10, - ACTIONS(3345), 1, - anon_sym_LPAREN, - ACTIONS(3347), 1, - anon_sym_LBRACE, - ACTIONS(3351), 1, - anon_sym_COLON_COLON, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3357), 1, - anon_sym_AT, - STATE(1343), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3349), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [49146] = 9, - ACTIONS(2486), 1, + [49104] = 9, + ACTIONS(2568), 1, anon_sym_COLON, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - STATE(1343), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 12, + ACTIONS(2564), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110917,41 +112342,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49186] = 4, + [49144] = 10, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_LBRACE, + ACTIONS(3441), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, + anon_sym_AT, + STATE(1364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2530), 2, + ACTIONS(3439), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2532), 14, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3433), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_if, - anon_sym_BANG, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49215] = 4, - ACTIONS(2512), 1, + [49186] = 4, + ACTIONS(2632), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2516), 2, + ACTIONS(2636), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2510), 15, + ACTIONS(2630), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110967,52 +112399,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49244] = 8, - ACTIONS(2496), 1, + [49215] = 4, + ACTIONS(2600), 1, anon_sym_COLON, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3363), 1, - anon_sym_COLON_COLON, - STATE(1343), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2494), 12, + ACTIONS(2604), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2598), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [49281] = 8, - ACTIONS(2500), 1, + [49244] = 8, + ACTIONS(2578), 1, anon_sym_COLON, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3363), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - STATE(1343), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2498), 12, + ACTIONS(2576), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111025,92 +112453,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49318] = 4, - ACTIONS(2520), 1, + [49281] = 8, + ACTIONS(2582), 1, anon_sym_COLON, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2524), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2518), 15, + ACTIONS(2580), 12, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, anon_sym_PIPE, - [49347] = 4, - ACTIONS(2554), 1, - anon_sym_COLON, + [49318] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2552), 15, + ACTIONS(2618), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2622), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2624), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49376] = 4, - ACTIONS(2528), 1, - anon_sym_COLON, + [49347] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2526), 15, + ACTIONS(2630), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2634), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2636), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49405] = 4, + [49376] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 2, + ACTIONS(2610), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2514), 2, + ACTIONS(2614), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2516), 14, + ACTIONS(2616), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111125,17 +112557,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, + [49405] = 4, + ACTIONS(2620), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2624), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2618), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LT2, + anon_sym_PIPE, [49434] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2518), 2, + ACTIONS(2598), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2522), 2, + ACTIONS(2602), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2524), 14, + ACTIONS(2604), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111151,143 +112608,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [49463] = 4, + ACTIONS(2612), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2552), 2, + ACTIONS(2616), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2610), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LT2, + anon_sym_PIPE, + [49492] = 6, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(2556), 2, + STATE(1358), 1, + sym_type_arguments, + STATE(1383), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2584), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, anon_sym_EQ, - ACTIONS(2558), 14, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [49524] = 6, + ACTIONS(3425), 1, anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(1358), 1, + sym_type_arguments, + STATE(1383), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2626), 13, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [49492] = 17, - ACTIONS(3367), 1, + [49556] = 17, + ACTIONS(3449), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(3451), 1, anon_sym_enum, - ACTIONS(3371), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(3373), 1, + ACTIONS(3455), 1, anon_sym_mod, - ACTIONS(3375), 1, + ACTIONS(3457), 1, anon_sym_static, - ACTIONS(3377), 1, + ACTIONS(3459), 1, anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(3461), 1, anon_sym_trait, - ACTIONS(3381), 1, + ACTIONS(3463), 1, anon_sym_type, - ACTIONS(3383), 1, + ACTIONS(3465), 1, anon_sym_union, - ACTIONS(3385), 1, + ACTIONS(3467), 1, anon_sym_unsafe, - ACTIONS(3387), 1, + ACTIONS(3469), 1, anon_sym_use, - ACTIONS(3389), 1, + ACTIONS(3471), 1, anon_sym_extern, - STATE(1514), 1, + STATE(1528), 1, sym_extern_modifier, - STATE(1549), 1, + STATE(1575), 1, aux_sym_function_modifiers_repeat1, - STATE(2359), 1, + STATE(2397), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3365), 2, + ACTIONS(3447), 2, anon_sym_async, anon_sym_default, - [49546] = 6, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1346), 1, - sym_type_arguments, - STATE(1371), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2506), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49578] = 17, - ACTIONS(3391), 1, + [49610] = 17, + ACTIONS(3473), 1, anon_sym_const, - ACTIONS(3393), 1, + ACTIONS(3475), 1, anon_sym_enum, - ACTIONS(3395), 1, + ACTIONS(3477), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3479), 1, anon_sym_mod, - ACTIONS(3399), 1, + ACTIONS(3481), 1, anon_sym_static, - ACTIONS(3401), 1, + ACTIONS(3483), 1, anon_sym_struct, - ACTIONS(3403), 1, + ACTIONS(3485), 1, anon_sym_trait, - ACTIONS(3405), 1, + ACTIONS(3487), 1, anon_sym_type, - ACTIONS(3407), 1, + ACTIONS(3489), 1, anon_sym_union, - ACTIONS(3409), 1, + ACTIONS(3491), 1, anon_sym_unsafe, - ACTIONS(3411), 1, + ACTIONS(3493), 1, anon_sym_use, - ACTIONS(3413), 1, + ACTIONS(3495), 1, anon_sym_extern, - STATE(1503), 1, + STATE(1513), 1, sym_extern_modifier, - STATE(1549), 1, + STATE(1575), 1, aux_sym_function_modifiers_repeat1, - STATE(2533), 1, + STATE(2556), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3365), 2, + ACTIONS(3447), 2, anon_sym_async, anon_sym_default, - [49632] = 6, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [49664] = 6, + ACTIONS(3425), 1, anon_sym_LPAREN, - STATE(1346), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(1358), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 13, + ACTIONS(2606), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111301,20 +112784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49664] = 6, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1346), 1, - sym_type_arguments, - STATE(1371), 1, - sym_parameters, + [49696] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 13, + ACTIONS(2610), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111322,18 +112798,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [49696] = 3, - ACTIONS(3415), 1, + [49719] = 3, + ACTIONS(3497), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3111), 15, + ACTIONS(3183), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111349,13 +112827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49721] = 2, + [49744] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 16, + ACTIONS(2972), 15, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111363,20 +112840,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + sym_mutable_specifier, + anon_sym_PIPE, + sym_self, + [49766] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3191), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [49788] = 3, + ACTIONS(2680), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2678), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, + anon_sym_COLON_COLON, anon_sym_PIPE, - [49744] = 3, - ACTIONS(2646), 1, + [49812] = 3, + ACTIONS(2666), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 14, + ACTIONS(2664), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111391,14 +112909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49768] = 3, + [49836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2522), 2, + ACTIONS(2634), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2524), 13, + ACTIONS(2636), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111412,56 +112930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49792] = 3, - ACTIONS(2730), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3113), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - [49816] = 3, - ACTIONS(3417), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3113), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - [49840] = 3, + [49860] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 2, + ACTIONS(2602), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2532), 13, + ACTIONS(2604), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111475,43 +112951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49864] = 14, - ACTIONS(2482), 1, - anon_sym_PLUS, - ACTIONS(3343), 1, - anon_sym_PIPE, - ACTIONS(3347), 1, - anon_sym_LBRACE, - ACTIONS(3349), 1, - anon_sym_COLON, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3357), 1, - anon_sym_AT, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3419), 1, - anon_sym_LPAREN, - ACTIONS(3424), 1, + [49884] = 3, + ACTIONS(3499), 1, anon_sym_COLON_COLON, - STATE(1343), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3421), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49910] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3095), 15, + ACTIONS(3187), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111526,14 +112972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [49932] = 3, - ACTIONS(2618), 1, + [49908] = 3, + ACTIONS(2738), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 14, + ACTIONS(2736), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111548,75 +112993,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49956] = 13, - ACTIONS(3347), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, + [49932] = 13, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3357), 1, + ACTIONS(3437), 1, + anon_sym_LBRACE, + ACTIONS(3445), 1, anon_sym_AT, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3421), 1, - anon_sym_RBRACK, - ACTIONS(3426), 1, + ACTIONS(3501), 1, anon_sym_LPAREN, - ACTIONS(3428), 1, + ACTIONS(3503), 1, + anon_sym_RBRACK, + ACTIONS(3506), 1, anon_sym_COLON_COLON, - STATE(1343), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 2, + ACTIONS(2564), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3343), 2, + ACTIONS(3433), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [50000] = 13, - ACTIONS(3343), 1, - anon_sym_PIPE, - ACTIONS(3347), 1, - anon_sym_LBRACE, - ACTIONS(3349), 1, - anon_sym_COLON, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3357), 1, - anon_sym_AT, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3430), 1, - anon_sym_LPAREN, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - STATE(1343), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2482), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [50044] = 3, - ACTIONS(2622), 1, + [49976] = 3, + ACTIONS(2662), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 14, + ACTIONS(2660), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111631,14 +113045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50068] = 3, + [50000] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2556), 2, + ACTIONS(2622), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2558), 13, + ACTIONS(2624), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111652,76 +113066,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [50092] = 6, - ACTIONS(3345), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, + [50024] = 3, + ACTIONS(2774), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3349), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50122] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2905), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(3187), 14, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + [50048] = 14, + ACTIONS(2564), 1, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - sym_mutable_specifier, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3433), 1, anon_sym_PIPE, - sym_self, - [50144] = 3, - ACTIONS(2590), 1, + ACTIONS(3437), 1, + anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_COLON, + ACTIONS(3445), 1, + anon_sym_AT, + ACTIONS(3508), 1, + anon_sym_LPAREN, + ACTIONS(3510), 1, + anon_sym_COLON_COLON, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 14, - anon_sym_SEMI, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3503), 2, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [50168] = 2, + [50094] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3125), 15, + ACTIONS(3179), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111737,32 +113139,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50190] = 3, - ACTIONS(2664), 1, - anon_sym_COLON, + [50116] = 6, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3512), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2662), 14, + ACTIONS(3439), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3433), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [50214] = 2, + [50146] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3119), 15, + ACTIONS(3209), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -111778,92 +113183,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50236] = 4, - ACTIONS(2546), 1, + [50168] = 13, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3433), 1, + anon_sym_PIPE, + ACTIONS(3437), 1, + anon_sym_LBRACE, + ACTIONS(3439), 1, anon_sym_COLON, - ACTIONS(3436), 1, + ACTIONS(3445), 1, + anon_sym_AT, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, anon_sym_COLON_COLON, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 12, - anon_sym_SEMI, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2564), 3, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50261] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2658), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + [50212] = 3, + ACTIONS(2710), 1, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [50282] = 3, - ACTIONS(3438), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 13, + ACTIONS(2708), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [50305] = 4, - ACTIONS(2546), 1, - anon_sym_COLON, - ACTIONS(3115), 1, + [50236] = 5, + ACTIONS(3522), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 12, + ACTIONS(3520), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3518), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [50330] = 2, + [50263] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 14, + ACTIONS(2712), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111878,40 +113276,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50351] = 4, - ACTIONS(2508), 1, + [50284] = 4, + ACTIONS(2608), 1, anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2506), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50376] = 3, - ACTIONS(3442), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2666), 13, + ACTIONS(2606), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -111919,61 +113297,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50399] = 14, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [50309] = 14, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - ACTIONS(3444), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3528), 1, anon_sym_COLON, - ACTIONS(3446), 1, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(3448), 1, + ACTIONS(3532), 1, anon_sym_COMMA, - ACTIONS(3450), 1, + ACTIONS(3534), 1, anon_sym_GT, - STATE(1343), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, - STATE(1992), 1, - aux_sym_type_parameters_repeat1, - STATE(1994), 1, + STATE(2038), 1, sym_trait_bounds, + STATE(2044), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 2, - anon_sym_PLUS, - anon_sym_as, - [50444] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2584), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(2564), 2, anon_sym_PLUS, anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [50465] = 2, + [50354] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 14, + ACTIONS(2758), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111988,13 +113347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50486] = 3, - ACTIONS(3452), 1, + [50375] = 3, + ACTIONS(3536), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 13, + ACTIONS(2690), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112008,19 +113367,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50509] = 3, - ACTIONS(3454), 1, - anon_sym_DASH_GT, + [50398] = 4, + ACTIONS(2608), 1, + anon_sym_COLON, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 13, + ACTIONS(2606), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -112028,97 +113388,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50532] = 5, - ACTIONS(3460), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3458), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3456), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50559] = 3, - ACTIONS(2305), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2307), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + [50423] = 4, + ACTIONS(2628), 1, anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50582] = 2, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 14, + ACTIONS(2626), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50603] = 4, - ACTIONS(3466), 1, - anon_sym_pat, - STATE(564), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3464), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [50628] = 4, - ACTIONS(2546), 1, + [50448] = 4, + ACTIONS(2586), 1, anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 12, + ACTIONS(2584), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112131,13 +113430,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50653] = 3, - ACTIONS(3468), 1, + [50473] = 3, + ACTIONS(3540), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 13, + ACTIONS(2696), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112151,13 +113450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50676] = 3, - ACTIONS(3470), 1, + [50496] = 3, + ACTIONS(3542), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 13, + ACTIONS(2702), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112171,34 +113470,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50699] = 4, - ACTIONS(2504), 1, + [50519] = 3, + ACTIONS(3544), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2746), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [50542] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 12, + ACTIONS(2730), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50724] = 3, - ACTIONS(3472), 1, + [50563] = 3, + ACTIONS(3546), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 13, + ACTIONS(2668), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112212,13 +113529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50747] = 3, - ACTIONS(3476), 1, + [50586] = 3, + ACTIONS(2403), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 12, + ACTIONS(2405), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112227,15 +113544,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50769] = 2, + [50609] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 13, + ACTIONS(2770), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112247,13 +113565,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50789] = 2, + [50630] = 4, + ACTIONS(3550), 1, + anon_sym_pat, + STATE(567), 1, + sym_fragment_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3548), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [50655] = 3, + ACTIONS(3552), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 13, + ACTIONS(2740), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112267,11 +113609,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50809] = 2, + [50678] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 13, + ACTIONS(2674), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112283,13 +113625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50829] = 2, + [50699] = 3, + ACTIONS(3554), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2787), 13, + ACTIONS(2752), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112303,11 +113648,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50849] = 2, + [50722] = 4, + ACTIONS(2608), 1, + anon_sym_COLON, + ACTIONS(3195), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [50747] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2722), 13, + ACTIONS(2800), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112321,11 +113687,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50869] = 2, + [50767] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 13, + ACTIONS(2910), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112339,11 +113705,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50889] = 2, + [50787] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 13, + ACTIONS(2626), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112357,11 +113723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50909] = 2, + [50807] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 13, + ACTIONS(2936), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112375,30 +113741,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50929] = 3, - ACTIONS(3480), 1, + [50827] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(620), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [50847] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3478), 12, + ACTIONS(2584), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [50951] = 2, + [50867] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(648), 13, + ACTIONS(2890), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112412,11 +113795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50971] = 2, + [50887] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2953), 13, + ACTIONS(2906), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112430,11 +113813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50991] = 2, + [50907] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 13, + ACTIONS(2980), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112448,11 +113831,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51011] = 2, + [50927] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2865), 13, + ACTIONS(2614), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2616), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [50949] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(574), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112466,11 +113868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51031] = 2, + [50969] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2506), 13, + ACTIONS(2940), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112484,11 +113886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51051] = 2, + [50989] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 13, + ACTIONS(2788), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112502,11 +113904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51071] = 2, + [51009] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2937), 13, + ACTIONS(2868), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112520,11 +113922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51091] = 2, + [51029] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 13, + ACTIONS(2792), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112538,11 +113940,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51111] = 2, + [51049] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2957), 13, + ACTIONS(2804), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112556,11 +113958,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51131] = 2, + [51069] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2961), 13, + ACTIONS(2606), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112574,16 +113976,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51151] = 4, - ACTIONS(3349), 1, + [51089] = 3, + ACTIONS(3558), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 10, + ACTIONS(3556), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112592,13 +113991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51175] = 2, + [51111] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2917), 13, + ACTIONS(2796), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112612,11 +114013,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51195] = 2, + [51131] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(602), 13, + ACTIONS(676), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112630,11 +114031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51215] = 2, + [51151] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 13, + ACTIONS(652), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112648,11 +114049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51235] = 2, + [51171] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2857), 13, + ACTIONS(2808), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112666,11 +114067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51255] = 2, + [51191] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2925), 13, + ACTIONS(2956), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112684,11 +114085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51275] = 2, + [51211] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2795), 13, + ACTIONS(2948), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112702,11 +114103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51295] = 2, + [51231] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2748), 13, + ACTIONS(2808), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112720,11 +114121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51315] = 2, + [51251] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2921), 13, + ACTIONS(2914), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112738,11 +114139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51335] = 2, + [51271] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 13, + ACTIONS(2932), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112756,347 +114157,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51355] = 3, + [51291] = 3, + ACTIONS(3562), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2516), 11, + ACTIONS(3560), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, - anon_sym_BANG, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51377] = 5, - ACTIONS(2514), 1, - anon_sym_COLON, - ACTIONS(3482), 1, - anon_sym_LPAREN, + [51313] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 5, + ACTIONS(2840), 13, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2516), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_PIPE, + [51333] = 4, + ACTIONS(3439), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3433), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, anon_sym_PIPE, - [51402] = 4, + [51357] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3485), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2552), 4, + ACTIONS(2922), 13, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2558), 6, - anon_sym_BANG, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [51425] = 10, - ACTIONS(3345), 1, + [51377] = 5, + ACTIONS(2622), 1, + anon_sym_COLON, + ACTIONS(3564), 1, anon_sym_LPAREN, - ACTIONS(3347), 1, - anon_sym_LBRACE, - ACTIONS(3351), 1, - anon_sym_COLON_COLON, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3357), 1, - anon_sym_AT, - ACTIONS(3488), 1, - anon_sym_BANG, - STATE(1343), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(2618), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2624), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 3, - anon_sym_EQ_GT, - anon_sym_if, anon_sym_PIPE, - [51460] = 4, - ACTIONS(3494), 1, - anon_sym_COLON_COLON, + [51402] = 3, + ACTIONS(526), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3492), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3490), 9, + ACTIONS(524), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51483] = 3, - ACTIONS(556), 1, - anon_sym_EQ, + [51423] = 5, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(3567), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(554), 11, - anon_sym_SEMI, + ACTIONS(2630), 5, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(2636), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51504] = 4, - ACTIONS(3500), 1, + [51448] = 10, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_LBRACE, + ACTIONS(3441), 1, anon_sym_COLON_COLON, + ACTIONS(3445), 1, + anon_sym_AT, + ACTIONS(3570), 1, + anon_sym_BANG, + STATE(1364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3498), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3496), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3433), 3, anon_sym_EQ_GT, - anon_sym_RBRACK, anon_sym_if, - anon_sym_COMMA, - anon_sym_in, anon_sym_PIPE, - [51527] = 4, - ACTIONS(3417), 1, - anon_sym_COLON_COLON, + [51483] = 5, + ACTIONS(2614), 1, + anon_sym_COLON, + ACTIONS(3572), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3498), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3496), 9, - anon_sym_SEMI, + ACTIONS(2610), 5, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2616), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51508] = 5, + ACTIONS(2602), 1, + anon_sym_COLON, + ACTIONS(3575), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51550] = 4, - ACTIONS(3502), 1, + anon_sym_LT2, + ACTIONS(2604), 5, + anon_sym_BANG, anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51533] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3498), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3496), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3575), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - anon_sym_if, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2604), 6, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_in, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51573] = 4, + [51556] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3504), 2, + ACTIONS(3572), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2526), 4, + ACTIONS(2610), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2532), 6, + ACTIONS(2616), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51596] = 4, + [51579] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3482), 2, + ACTIONS(3567), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2510), 4, + ACTIONS(2630), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2516), 6, + ACTIONS(2636), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51619] = 4, + [51602] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3507), 2, + ACTIONS(3564), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2518), 4, + ACTIONS(2618), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2524), 6, + ACTIONS(2624), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51642] = 5, - ACTIONS(2530), 1, + [51625] = 5, + ACTIONS(2602), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 3, + ACTIONS(2598), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3504), 3, + ACTIONS(3575), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2532), 5, + ACTIONS(2604), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51667] = 4, - ACTIONS(3494), 1, - anon_sym_COLON_COLON, + [51650] = 3, + ACTIONS(546), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3512), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3510), 9, + ACTIONS(544), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51690] = 4, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, + [51671] = 3, + ACTIONS(552), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3516), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3514), 9, + ACTIONS(550), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51713] = 4, - ACTIONS(3417), 1, - anon_sym_COLON_COLON, + [51692] = 5, + ACTIONS(2614), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3516), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3514), 9, - anon_sym_SEMI, + ACTIONS(2610), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3572), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_COMMA, - anon_sym_in, + ACTIONS(2616), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51736] = 5, - ACTIONS(2514), 1, + [51717] = 5, + ACTIONS(2634), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 3, + ACTIONS(2630), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3482), 3, + ACTIONS(3567), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2516), 5, + ACTIONS(2636), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51761] = 4, - ACTIONS(3502), 1, + [51742] = 4, + ACTIONS(3582), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3516), 2, + ACTIONS(3580), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3514), 9, + ACTIONS(3578), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113106,189 +114546,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51784] = 5, - ACTIONS(2556), 1, + [51765] = 5, + ACTIONS(2622), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2552), 3, + ACTIONS(2618), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3485), 3, + ACTIONS(3564), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2558), 5, + ACTIONS(2624), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51809] = 3, - ACTIONS(532), 1, - anon_sym_EQ, + [51790] = 4, + ACTIONS(3588), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(530), 11, + ACTIONS(3586), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3584), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51830] = 3, - ACTIONS(542), 1, - anon_sym_EQ, + [51813] = 4, + ACTIONS(3499), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(540), 11, + ACTIONS(3586), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3584), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51851] = 5, - ACTIONS(2522), 1, - anon_sym_COLON, - ACTIONS(3507), 1, - anon_sym_LPAREN, + [51836] = 4, + ACTIONS(3590), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2518), 5, + ACTIONS(3586), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3584), 9, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2524), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [51876] = 5, - ACTIONS(2522), 1, - anon_sym_COLON, + [51859] = 4, + ACTIONS(3588), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2518), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3507), 3, - anon_sym_LPAREN, + ACTIONS(3594), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3592), 9, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - ACTIONS(2524), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [51901] = 5, - ACTIONS(2530), 1, - anon_sym_COLON, - ACTIONS(3504), 1, - anon_sym_LPAREN, + [51882] = 4, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 5, + ACTIONS(3598), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3596), 9, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2532), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [51926] = 5, - ACTIONS(2556), 1, - anon_sym_COLON, - ACTIONS(3485), 1, - anon_sym_LPAREN, + [51905] = 4, + ACTIONS(3499), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2552), 5, + ACTIONS(3594), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3592), 9, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2558), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [51951] = 3, - ACTIONS(3520), 1, - anon_sym_EQ, + [51928] = 4, + ACTIONS(3590), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3518), 10, + ACTIONS(3594), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3592), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51971] = 9, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [51951] = 9, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - ACTIONS(3522), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3600), 1, anon_sym_for, - STATE(1343), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + ACTIONS(2564), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52003] = 3, - ACTIONS(3526), 1, + [51983] = 3, + ACTIONS(3604), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 10, + ACTIONS(3602), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113299,51 +114739,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52023] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3530), 1, - sym_crate, - STATE(1561), 1, - sym_string_literal, + [52003] = 3, + ACTIONS(3586), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3528), 8, + ACTIONS(3584), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52047] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3532), 1, - sym_crate, - STATE(1561), 1, - sym_string_literal, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52023] = 9, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3606), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3528), 8, + ACTIONS(2564), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52071] = 3, - ACTIONS(600), 1, + anon_sym_PLUS, + anon_sym_where, + [52055] = 3, + ACTIONS(3610), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(598), 10, + ACTIONS(3608), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113354,13 +114796,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52091] = 3, - ACTIONS(3536), 1, + [52075] = 9, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3612), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2564), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52107] = 9, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3614), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2564), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52139] = 3, + ACTIONS(3618), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3534), 10, + ACTIONS(3616), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113371,13 +114859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52111] = 3, - ACTIONS(3540), 1, + [52159] = 3, + ACTIONS(3622), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3538), 10, + ACTIONS(3620), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113388,13 +114876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52131] = 3, - ACTIONS(3544), 1, + [52179] = 3, + ACTIONS(3626), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 10, + ACTIONS(3624), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113405,32 +114893,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52151] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3546), 1, - sym_crate, - STATE(1561), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3528), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52175] = 3, - ACTIONS(3516), 1, + [52199] = 3, + ACTIONS(3630), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3514), 10, + ACTIONS(3628), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113441,13 +114910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52195] = 3, - ACTIONS(3550), 1, + [52219] = 3, + ACTIONS(3634), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3548), 10, + ACTIONS(3632), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113458,59 +114927,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52215] = 9, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [52239] = 9, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - ACTIONS(3552), 1, - anon_sym_for, - STATE(1343), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2482), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52247] = 9, - ACTIONS(3355), 1, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3363), 1, - anon_sym_COLON_COLON, - ACTIONS(3554), 1, + ACTIONS(3636), 1, anon_sym_for, - STATE(1343), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + ACTIONS(2564), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52279] = 3, - ACTIONS(3558), 1, + [52271] = 3, + ACTIONS(3594), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3556), 10, + ACTIONS(3592), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113521,33 +114967,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52299] = 6, - ACTIONS(3560), 1, - anon_sym_COLON, - ACTIONS(3562), 1, - anon_sym_BANG, - ACTIONS(3564), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52325] = 3, - ACTIONS(3568), 1, + [52291] = 3, + ACTIONS(3640), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3566), 10, + ACTIONS(3638), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113558,13 +114984,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52345] = 3, - ACTIONS(3572), 1, + [52311] = 3, + ACTIONS(3644), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3570), 10, + ACTIONS(3642), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113575,36 +115001,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52365] = 9, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [52331] = 9, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - ACTIONS(3574), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3646), 1, anon_sym_for, - STATE(1343), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + ACTIONS(2564), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52397] = 3, - ACTIONS(3578), 1, + [52363] = 3, + ACTIONS(3650), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 10, + ACTIONS(3648), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113615,13 +115041,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52417] = 3, - ACTIONS(3582), 1, + [52383] = 6, + ACTIONS(3652), 1, + anon_sym_COLON, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3656), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52409] = 3, + ACTIONS(3660), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3580), 10, + ACTIONS(3658), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113632,13 +115078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52437] = 3, - ACTIONS(3349), 1, + [52429] = 3, + ACTIONS(3664), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 10, + ACTIONS(3662), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113649,13 +115095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52457] = 3, - ACTIONS(3586), 1, + [52449] = 3, + ACTIONS(3668), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 10, + ACTIONS(3666), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113666,36 +115112,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52477] = 9, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3363), 1, - anon_sym_COLON_COLON, - ACTIONS(3588), 1, - anon_sym_for, - STATE(1343), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, + [52469] = 3, + ACTIONS(3672), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3670), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52489] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3676), 1, + sym_crate, + STATE(1574), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + ACTIONS(3674), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52509] = 3, - ACTIONS(3592), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52513] = 3, + ACTIONS(3439), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 10, + ACTIONS(3433), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113706,13 +115165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52529] = 3, - ACTIONS(3596), 1, + [52533] = 3, + ACTIONS(3680), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 10, + ACTIONS(3678), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113723,13 +115182,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52549] = 3, - ACTIONS(3600), 1, + [52553] = 6, + ACTIONS(3652), 1, + anon_sym_COLON, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3682), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52579] = 3, + ACTIONS(3686), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 10, + ACTIONS(3684), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113740,13 +115219,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52569] = 3, - ACTIONS(3604), 1, + [52599] = 3, + ACTIONS(3690), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 10, + ACTIONS(3688), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113757,13 +115236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52589] = 3, - ACTIONS(3608), 1, + [52619] = 3, + ACTIONS(580), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3606), 10, + ACTIONS(578), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113774,82 +115253,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52609] = 9, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3363), 1, - anon_sym_COLON_COLON, - ACTIONS(3610), 1, - anon_sym_for, - STATE(1343), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2482), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52641] = 9, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3363), 1, - anon_sym_COLON_COLON, - ACTIONS(3612), 1, - anon_sym_for, - STATE(1343), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2482), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52673] = 9, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3363), 1, - anon_sym_COLON_COLON, - ACTIONS(3614), 1, - anon_sym_for, - STATE(1343), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, + [52639] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3692), 1, + sym_crate, + STATE(1574), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + ACTIONS(3674), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52705] = 3, - ACTIONS(3618), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52663] = 3, + ACTIONS(3696), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 10, + ACTIONS(3694), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113860,13 +115289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52725] = 3, - ACTIONS(3622), 1, + [52683] = 3, + ACTIONS(3700), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 10, + ACTIONS(3698), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113877,13 +115306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52745] = 3, - ACTIONS(3498), 1, + [52703] = 3, + ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3496), 10, + ACTIONS(3702), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113894,13 +115323,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52765] = 3, - ACTIONS(3626), 1, + [52723] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3706), 1, + sym_crate, + STATE(1574), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3674), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52747] = 3, + ACTIONS(3710), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 10, + ACTIONS(3708), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113911,13 +115359,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52785] = 3, - ACTIONS(3630), 1, + [52767] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3712), 1, + sym_crate, + STATE(1574), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3674), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52791] = 9, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3714), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2564), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52823] = 3, + ACTIONS(3718), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3628), 10, + ACTIONS(3716), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113928,13 +115418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52805] = 3, - ACTIONS(3634), 1, + [52843] = 3, + ACTIONS(3722), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3632), 10, + ACTIONS(3720), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113945,33 +115435,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52825] = 6, - ACTIONS(3560), 1, - anon_sym_COLON, - ACTIONS(3562), 1, - anon_sym_BANG, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52851] = 3, - ACTIONS(3640), 1, + [52863] = 3, + ACTIONS(3726), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3638), 10, + ACTIONS(3724), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113982,13 +115452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52871] = 3, - ACTIONS(3644), 1, + [52883] = 3, + ACTIONS(3730), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 10, + ACTIONS(3728), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113999,13 +115469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52891] = 3, - ACTIONS(3648), 1, + [52903] = 3, + ACTIONS(3734), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 10, + ACTIONS(3732), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114016,13 +115486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52911] = 3, - ACTIONS(3652), 1, + [52923] = 3, + ACTIONS(3738), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 10, + ACTIONS(3736), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114033,195 +115503,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52931] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3654), 1, - sym_crate, - STATE(1561), 1, - sym_string_literal, + [52943] = 9, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3740), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3528), 8, + ACTIONS(2564), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52955] = 3, - ACTIONS(3658), 1, - anon_sym_EQ, + anon_sym_PLUS, + anon_sym_where, + [52975] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3742), 1, + sym_identifier, + ACTIONS(3744), 1, + anon_sym_RBRACE, + ACTIONS(3746), 1, + anon_sym_COMMA, + ACTIONS(3748), 1, + sym_crate, + STATE(2066), 1, + sym_enum_variant, + STATE(2436), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3656), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52975] = 5, - ACTIONS(3562), 1, + STATE(1586), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53008] = 5, + ACTIONS(3654), 1, anon_sym_BANG, - ACTIONS(3564), 1, + ACTIONS(3750), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52998] = 5, - ACTIONS(3562), 1, + [53031] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3461), 1, + anon_sym_trait, + ACTIONS(3752), 1, + anon_sym_impl, + STATE(163), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53056] = 5, + ACTIONS(3654), 1, anon_sym_BANG, - ACTIONS(3636), 1, + ACTIONS(3656), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53021] = 10, + [53079] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3756), 1, anon_sym_RBRACE, - ACTIONS(3664), 1, + ACTIONS(3758), 1, anon_sym_COMMA, - ACTIONS(3666), 1, - sym_crate, - STATE(2051), 1, - sym_enum_variant, - STATE(2542), 1, + STATE(2104), 1, + sym_field_declaration, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1559), 2, + STATE(1570), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53054] = 6, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - STATE(2099), 1, - sym__literal, + [53112] = 9, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3760), 1, + anon_sym_EQ, + STATE(1382), 1, + sym_parameters, + STATE(1754), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3668), 2, - anon_sym_true, - anon_sym_false, - STATE(1070), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [53079] = 10, + ACTIONS(2564), 3, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + [53143] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3762), 1, + anon_sym_LBRACE, + STATE(1358), 1, + sym_type_arguments, + STATE(1383), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [53170] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3670), 1, + ACTIONS(3764), 1, anon_sym_RBRACE, - ACTIONS(3672), 1, + ACTIONS(3766), 1, anon_sym_COMMA, - STATE(1863), 1, + STATE(1910), 1, sym_enum_variant, - STATE(2542), 1, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1546), 2, + STATE(1556), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53112] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3379), 1, - anon_sym_trait, - ACTIONS(3674), 1, - anon_sym_impl, - STATE(163), 1, - sym_block, + [53203] = 5, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3682), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53137] = 8, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3676), 1, - sym_identifier, - ACTIONS(3678), 1, - anon_sym_RBRACE, - ACTIONS(3680), 1, - anon_sym_COMMA, - ACTIONS(3682), 1, - anon_sym_DOT_DOT, + [53226] = 6, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + STATE(1916), 1, + sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1854), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1915), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53166] = 6, + ACTIONS(3768), 2, + anon_sym_true, + anon_sym_false, + STATE(1074), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [53251] = 6, ACTIONS(93), 1, aux_sym_string_literal_token1, - STATE(2103), 1, + STATE(1915), 1, sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3668), 2, + ACTIONS(3768), 2, anon_sym_true, anon_sym_false, - STATE(1070), 2, + STATE(1074), 2, sym_string_literal, sym_boolean_literal, ACTIONS(91), 4, @@ -114229,1838 +115748,1806 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - [53191] = 9, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3363), 1, - anon_sym_COLON_COLON, - ACTIONS(3684), 1, - anon_sym_EQ, - STATE(1374), 1, - sym_parameters, - STATE(1749), 1, - sym_type_arguments, + [53276] = 8, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3770), 1, + sym_identifier, + ACTIONS(3772), 1, + anon_sym_RBRACE, + ACTIONS(3774), 1, + anon_sym_COMMA, + ACTIONS(3776), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 3, - anon_sym_PLUS, + STATE(1857), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1925), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53305] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3778), 1, + anon_sym_RBRACE, + ACTIONS(3780), 1, anon_sym_COMMA, - anon_sym_GT, - [53222] = 5, - ACTIONS(3562), 1, - anon_sym_BANG, - ACTIONS(3686), 1, - anon_sym_COLON_COLON, + STATE(2081), 1, + sym_field_declaration, + STATE(2378), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53245] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3688), 1, - anon_sym_LBRACE, - STATE(1346), 1, - sym_type_arguments, - STATE(1371), 1, - sym_parameters, + STATE(1557), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53338] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3742), 1, + sym_identifier, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3782), 1, + anon_sym_RBRACE, + STATE(2222), 1, + sym_enum_variant, + STATE(2436), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [53272] = 10, + STATE(1566), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53368] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3692), 1, + ACTIONS(3784), 1, anon_sym_RBRACE, - ACTIONS(3694), 1, - anon_sym_COMMA, - STATE(1897), 1, + STATE(2203), 1, sym_field_declaration, - STATE(2464), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1547), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53305] = 10, + [53398] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3696), 1, + ACTIONS(3786), 1, anon_sym_RBRACE, - ACTIONS(3698), 1, - anon_sym_COMMA, - STATE(2089), 1, + STATE(2203), 1, sym_field_declaration, - STATE(2464), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53338] = 9, + [53428] = 9, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3788), 1, + sym_identifier, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3792), 1, + anon_sym_GT, + ACTIONS(3794), 1, + sym_metavariable, + STATE(1871), 1, + sym_lifetime, + STATE(1919), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2267), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53458] = 10, + ACTIONS(3796), 1, + anon_sym_SEMI, + ACTIONS(3798), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(261), 1, + sym_field_declaration_list, + STATE(1606), 1, + sym_type_parameters, + STATE(2067), 1, + sym_ordered_field_declaration_list, + STATE(2293), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53490] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3700), 1, + ACTIONS(3806), 1, anon_sym_RBRACE, - STATE(2198), 1, + STATE(2222), 1, sym_enum_variant, - STATE(2542), 1, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53368] = 9, - ACTIONS(2245), 1, + [53520] = 5, + ACTIONS(3808), 1, + anon_sym_SEMI, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(1013), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53542] = 9, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3706), 1, + ACTIONS(3794), 1, + sym_metavariable, + ACTIONS(3812), 1, anon_sym_GT, - ACTIONS(3708), 1, + STATE(1865), 1, + sym_lifetime, + STATE(1919), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2267), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53572] = 7, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3770), 1, + sym_identifier, + ACTIONS(3776), 1, + anon_sym_DOT_DOT, + ACTIONS(3814), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1857), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2240), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53598] = 9, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3788), 1, + sym_identifier, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3794), 1, sym_metavariable, - STATE(1761), 1, + ACTIONS(3816), 1, + anon_sym_GT, + STATE(1865), 1, sym_lifetime, - STATE(1990), 1, + STATE(1919), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, + STATE(2267), 2, sym_const_parameter, sym_optional_type_parameter, - [53398] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [53628] = 7, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3710), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3818), 1, anon_sym_for, - STATE(1346), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53424] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3712), 1, - anon_sym_move, - STATE(99), 1, - sym_block, + [53654] = 7, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3770), 1, + sym_identifier, + ACTIONS(3776), 1, + anon_sym_DOT_DOT, + ACTIONS(3820), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53446] = 7, - ACTIONS(3345), 1, + STATE(1857), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2240), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53680] = 7, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3349), 1, + ACTIONS(3439), 1, anon_sym_COLON, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3714), 1, + ACTIONS(3822), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 3, + ACTIONS(3433), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [53472] = 10, - ACTIONS(3716), 1, - anon_sym_SEMI, - ACTIONS(3718), 1, - anon_sym_LPAREN, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - STATE(924), 1, - sym_field_declaration_list, - STATE(1616), 1, - sym_type_parameters, - STATE(2014), 1, - sym_ordered_field_declaration_list, - STATE(2270), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53504] = 9, + [53706] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3726), 1, + ACTIONS(3824), 1, anon_sym_RBRACE, - STATE(2198), 1, + STATE(2222), 1, sym_enum_variant, - STATE(2542), 1, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53534] = 9, + [53736] = 10, + ACTIONS(3798), 1, + anon_sym_LPAREN, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(3826), 1, + anon_sym_SEMI, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(889), 1, + sym_field_declaration_list, + STATE(1622), 1, + sym_type_parameters, + STATE(2029), 1, + sym_ordered_field_declaration_list, + STATE(2215), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53768] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3830), 1, anon_sym_RBRACE, - STATE(2292), 1, + STATE(2203), 1, sym_field_declaration, - STATE(2464), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1567), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53564] = 9, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_const, - ACTIONS(3708), 1, - sym_metavariable, - ACTIONS(3730), 1, - anon_sym_GT, - STATE(1833), 1, - sym_lifetime, - STATE(1990), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2303), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53594] = 9, - ACTIONS(2245), 1, + [53798] = 9, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3794), 1, sym_metavariable, - ACTIONS(3732), 1, + ACTIONS(3832), 1, anon_sym_GT, - STATE(1833), 1, + STATE(1865), 1, sym_lifetime, - STATE(1990), 1, + STATE(1919), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, + STATE(2267), 2, sym_const_parameter, sym_optional_type_parameter, - [53624] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [53828] = 7, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3734), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3834), 1, anon_sym_for, - STATE(1346), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53650] = 5, - ACTIONS(3736), 1, - anon_sym_SEMI, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(312), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2538), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53672] = 7, - ACTIONS(2249), 1, + [53854] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3676), 1, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3682), 1, - anon_sym_DOT_DOT, - ACTIONS(3740), 1, + ACTIONS(3836), 1, anon_sym_RBRACE, + STATE(2203), 1, + sym_field_declaration, + STATE(2378), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1854), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2132), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53698] = 10, - ACTIONS(3718), 1, + [53884] = 7, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(3742), 1, - anon_sym_SEMI, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(373), 1, - sym_field_declaration_list, - STATE(1599), 1, - sym_type_parameters, - STATE(2049), 1, - sym_ordered_field_declaration_list, - STATE(2216), 1, - sym_where_clause, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3838), 1, + anon_sym_for, + STATE(1358), 1, + sym_type_arguments, + STATE(1383), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53730] = 9, - ACTIONS(2245), 1, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53910] = 9, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3794), 1, sym_metavariable, - ACTIONS(3746), 1, + ACTIONS(3840), 1, anon_sym_GT, - STATE(1833), 1, + STATE(1865), 1, sym_lifetime, - STATE(1990), 1, + STATE(1919), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, + STATE(2267), 2, sym_const_parameter, sym_optional_type_parameter, - [53760] = 5, - ACTIONS(3748), 1, + [53940] = 5, + ACTIONS(3842), 1, anon_sym_SEMI, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(944), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2538), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53782] = 5, - ACTIONS(3750), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3752), 1, - anon_sym_SEMI, - STATE(812), 1, + STATE(466), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53804] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, - sym_identifier, - ACTIONS(3754), 1, - anon_sym_RBRACE, - STATE(2292), 1, - sym_field_declaration, - STATE(2464), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1567), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53834] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, - sym_identifier, - ACTIONS(3756), 1, - anon_sym_RBRACE, - STATE(2292), 1, - sym_field_declaration, - STATE(2464), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1567), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53864] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, - sym_identifier, - ACTIONS(3758), 1, - anon_sym_RBRACE, - STATE(2292), 1, - sym_field_declaration, - STATE(2464), 1, - sym_visibility_modifier, + [53962] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3846), 1, + anon_sym_for, + STATE(1358), 1, + sym_type_arguments, + STATE(1383), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1567), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53894] = 9, - ACTIONS(2245), 1, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53988] = 9, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3794), 1, sym_metavariable, - ACTIONS(3760), 1, + ACTIONS(3848), 1, anon_sym_GT, - STATE(1833), 1, + STATE(1865), 1, sym_lifetime, - STATE(1990), 1, + STATE(1919), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, + STATE(2267), 2, sym_const_parameter, sym_optional_type_parameter, - [53924] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3660), 1, - sym_identifier, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3762), 1, - anon_sym_RBRACE, - STATE(2198), 1, - sym_enum_variant, - STATE(2542), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1548), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53954] = 9, + [54018] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3764), 1, + ACTIONS(3850), 1, anon_sym_RBRACE, - STATE(2198), 1, + STATE(2222), 1, sym_enum_variant, - STATE(2542), 1, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53984] = 9, + [54048] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3852), 1, anon_sym_RBRACE, - STATE(2292), 1, + STATE(2203), 1, sym_field_declaration, - STATE(2464), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1567), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54014] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3660), 1, - sym_identifier, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3768), 1, - anon_sym_RBRACE, - STATE(2198), 1, - sym_enum_variant, - STATE(2542), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54044] = 10, - ACTIONS(3718), 1, - anon_sym_LPAREN, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(3770), 1, - anon_sym_SEMI, - STATE(918), 1, - sym_field_declaration_list, - STATE(1580), 1, - sym_type_parameters, - STATE(2108), 1, - sym_ordered_field_declaration_list, - STATE(2146), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54076] = 5, - ACTIONS(3738), 1, + [54078] = 5, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, + ACTIONS(3854), 1, anon_sym_SEMI, - STATE(466), 1, + STATE(1039), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54098] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3774), 1, - anon_sym_for, - STATE(1346), 1, - sym_type_arguments, - STATE(1371), 1, - sym_parameters, + [54100] = 9, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3788), 1, + sym_identifier, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3794), 1, + sym_metavariable, + ACTIONS(3856), 1, + anon_sym_GT, + STATE(1865), 1, + sym_lifetime, + STATE(1919), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54124] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3776), 1, - anon_sym_for, - STATE(1346), 1, - sym_type_arguments, - STATE(1371), 1, - sym_parameters, + STATE(2267), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54130] = 9, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3788), 1, + sym_identifier, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3794), 1, + sym_metavariable, + ACTIONS(3858), 1, + anon_sym_GT, + STATE(1865), 1, + sym_lifetime, + STATE(1919), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, - anon_sym_SEMI, + STATE(2267), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54160] = 10, + ACTIONS(3798), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3802), 1, anon_sym_where, - [54150] = 9, - ACTIONS(2245), 1, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(3860), 1, + anon_sym_SEMI, + STATE(373), 1, + sym_field_declaration_list, + STATE(1616), 1, + sym_type_parameters, + STATE(2015), 1, + sym_ordered_field_declaration_list, + STATE(2204), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54192] = 9, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3794), 1, sym_metavariable, - ACTIONS(3778), 1, + ACTIONS(3862), 1, anon_sym_GT, - STATE(1833), 1, + STATE(1865), 1, sym_lifetime, - STATE(1990), 1, + STATE(1919), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, + STATE(2267), 2, sym_const_parameter, sym_optional_type_parameter, - [54180] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [54222] = 7, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3780), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3864), 1, anon_sym_for, - STATE(1346), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54206] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [54248] = 7, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3782), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3866), 1, anon_sym_for, - STATE(1346), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54232] = 9, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, + [54274] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3868), 1, + anon_sym_move, + STATE(95), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3708), 1, - sym_metavariable, - ACTIONS(3784), 1, - anon_sym_GT, - STATE(1833), 1, - sym_lifetime, - STATE(1990), 1, - sym_constrained_type_parameter, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54296] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3742), 1, + sym_identifier, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3870), 1, + anon_sym_RBRACE, + STATE(2222), 1, + sym_enum_variant, + STATE(2436), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54262] = 9, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(3702), 1, + STATE(1566), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54326] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3704), 1, - anon_sym_const, - ACTIONS(3708), 1, - sym_metavariable, - ACTIONS(3786), 1, - anon_sym_GT, - STATE(1833), 1, - sym_lifetime, - STATE(1990), 1, - sym_constrained_type_parameter, + ACTIONS(3872), 1, + anon_sym_RBRACE, + STATE(2203), 1, + sym_field_declaration, + STATE(2378), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54292] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + STATE(1562), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54356] = 7, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3788), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3874), 1, anon_sym_for, - STATE(1346), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54318] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [54382] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3876), 1, + sym_identifier, + STATE(98), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3878), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54404] = 10, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(3880), 1, + anon_sym_SEMI, + STATE(904), 1, + sym_field_declaration_list, + STATE(1617), 1, + sym_type_parameters, + STATE(2123), 1, + sym_ordered_field_declaration_list, + STATE(2156), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54436] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3882), 1, anon_sym_for, - STATE(1346), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54344] = 9, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_const, - ACTIONS(3708), 1, - sym_metavariable, - ACTIONS(3792), 1, - anon_sym_GT, - STATE(1833), 1, - sym_lifetime, - STATE(1990), 1, - sym_constrained_type_parameter, + [54462] = 5, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(3884), 1, + anon_sym_SEMI, + STATE(409), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54374] = 7, - ACTIONS(2249), 1, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54484] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3676), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3682), 1, - anon_sym_DOT_DOT, - ACTIONS(3794), 1, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3886), 1, anon_sym_RBRACE, + STATE(2222), 1, + sym_enum_variant, + STATE(2436), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1854), 2, + STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2132), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54400] = 5, - ACTIONS(15), 1, + [54514] = 6, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3888), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3433), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [54537] = 8, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(3895), 1, anon_sym_LBRACE, - ACTIONS(3796), 1, - sym_identifier, - STATE(102), 1, + ACTIONS(3898), 1, + anon_sym_LBRACK, + STATE(1550), 1, + aux_sym_macro_definition_repeat1, + STATE(2408), 1, + sym_token_tree_pattern, + STATE(2503), 1, + sym_macro_rule, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3893), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [54564] = 4, + ACTIONS(888), 1, + anon_sym_LBRACE, + STATE(1478), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54583] = 6, + ACTIONS(3518), 1, + anon_sym_PIPE, + ACTIONS(3520), 1, + anon_sym_COLON, + ACTIONS(3682), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2606), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [54606] = 4, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + STATE(1574), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3674), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54422] = 9, + [54625] = 8, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3901), 1, + sym_identifier, + ACTIONS(3903), 1, + sym_metavariable, + STATE(1772), 1, + sym_lifetime, + STATE(1799), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2016), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54652] = 4, + ACTIONS(3907), 1, + anon_sym_PLUS, + STATE(1555), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3905), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54671] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3800), 1, - anon_sym_RBRACE, - STATE(2292), 1, - sym_field_declaration, - STATE(2464), 1, + ACTIONS(3748), 1, + sym_crate, + STATE(2023), 1, + sym_enum_variant, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1567), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54452] = 9, + [54698] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3660), 1, - sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3802), 1, - anon_sym_RBRACE, - STATE(2198), 1, - sym_enum_variant, - STATE(2542), 1, + ACTIONS(3754), 1, + sym_identifier, + STATE(1891), 1, + sym_field_declaration, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54482] = 10, - ACTIONS(3718), 1, - anon_sym_LPAREN, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(3744), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_SEMI, - STATE(289), 1, - sym_field_declaration_list, - STATE(1612), 1, - sym_type_parameters, - STATE(1872), 1, - sym_ordered_field_declaration_list, - STATE(2170), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54514] = 4, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, - ACTIONS(3562), 1, - anon_sym_BANG, + [54725] = 8, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3910), 1, + sym_identifier, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(3914), 1, + anon_sym_COMMA, + ACTIONS(3916), 1, + anon_sym_ref, + ACTIONS(3918), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54533] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, + STATE(2009), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54752] = 6, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3770), 1, sym_identifier, - ACTIONS(3666), 1, - sym_crate, - STATE(2198), 1, - sym_enum_variant, - STATE(2542), 1, - sym_visibility_modifier, + ACTIONS(3776), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1857), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54560] = 4, - ACTIONS(3808), 1, + STATE(2240), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54775] = 4, + ACTIONS(3922), 1, anon_sym_PLUS, - STATE(1545), 1, + STATE(1583), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3806), 6, + ACTIONS(3920), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54579] = 9, - ACTIONS(3722), 1, + [54794] = 9, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3926), 1, anon_sym_LT, - STATE(939), 1, + STATE(916), 1, sym_declaration_list, - STATE(1658), 1, + STATE(1692), 1, sym_type_parameters, - STATE(1815), 1, + STATE(1864), 1, sym_trait_bounds, - STATE(2157), 1, + STATE(2153), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54608] = 6, - ACTIONS(3686), 1, - anon_sym_COLON_COLON, - ACTIONS(3814), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2544), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3456), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54631] = 8, - ACTIONS(828), 1, - anon_sym_DOT_DOT, - ACTIONS(3817), 1, + [54823] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(3821), 1, - anon_sym_COMMA, - ACTIONS(3823), 1, - anon_sym_ref, - ACTIONS(3825), 1, - sym_mutable_specifier, + STATE(2168), 1, + sym_field_declaration, + STATE(2378), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2112), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54658] = 4, - ACTIONS(3827), 1, + STATE(1140), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54850] = 4, + ACTIONS(3928), 1, anon_sym_PLUS, - STATE(1545), 1, + STATE(1583), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3806), 6, + ACTIONS(3920), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54677] = 4, - ACTIONS(3829), 1, + [54869] = 4, + ACTIONS(3930), 1, anon_sym_PLUS, - STATE(1545), 1, + STATE(1583), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3806), 6, + ACTIONS(3920), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54696] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, - sym_identifier, - STATE(2292), 1, - sym_field_declaration, - STATE(2464), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1567), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54723] = 6, - ACTIONS(3345), 1, - anon_sym_LPAREN, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3831), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [54746] = 8, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(3704), 1, - anon_sym_const, - ACTIONS(3833), 1, - sym_identifier, - ACTIONS(3835), 1, - sym_metavariable, - STATE(1710), 1, - sym_lifetime, - STATE(1806), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2111), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54773] = 8, - ACTIONS(828), 1, - anon_sym_DOT_DOT, - ACTIONS(3817), 1, - sym_identifier, - ACTIONS(3823), 1, - anon_sym_ref, - ACTIONS(3825), 1, - sym_mutable_specifier, - ACTIONS(3837), 1, - anon_sym_RBRACE, - ACTIONS(3839), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2027), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54800] = 9, - ACTIONS(3722), 1, + [54888] = 9, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3926), 1, anon_sym_LT, - STATE(330), 1, + STATE(378), 1, sym_declaration_list, - STATE(1662), 1, + STATE(1652), 1, sym_type_parameters, - STATE(1812), 1, + STATE(1791), 1, sym_trait_bounds, - STATE(2229), 1, + STATE(2207), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54829] = 9, - ACTIONS(3722), 1, + [54917] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3742), 1, + sym_identifier, + ACTIONS(3748), 1, + sym_crate, + STATE(2154), 1, + sym_enum_variant, + STATE(2436), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1140), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54944] = 9, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, - anon_sym_LBRACE, ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3926), 1, anon_sym_LT, - STATE(260), 1, + STATE(821), 1, sym_declaration_list, - STATE(1673), 1, + STATE(1669), 1, sym_type_parameters, - STATE(1805), 1, + STATE(1829), 1, sym_trait_bounds, - STATE(2144), 1, + STATE(2189), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54858] = 8, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(3704), 1, - anon_sym_const, - ACTIONS(3833), 1, - sym_identifier, - ACTIONS(3835), 1, - sym_metavariable, - STATE(1702), 1, - sym_lifetime, - STATE(1806), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2111), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54885] = 4, - ACTIONS(3808), 1, - anon_sym_PLUS, - STATE(1569), 1, - aux_sym_trait_bounds_repeat1, + [54973] = 4, + ACTIONS(2720), 1, + anon_sym_COLON_COLON, + ACTIONS(3932), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3841), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54904] = 8, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54992] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - STATE(1919), 1, + STATE(2222), 1, sym_enum_variant, - STATE(2542), 1, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, + STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54931] = 8, + [55019] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3754), 1, sym_identifier, - STATE(2042), 1, + STATE(2103), 1, sym_field_declaration, - STATE(2464), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54958] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3660), 1, - sym_identifier, - ACTIONS(3666), 1, - sym_crate, - STATE(2159), 1, - sym_enum_variant, - STATE(2542), 1, - sym_visibility_modifier, + [55046] = 6, + ACTIONS(3750), 1, + anon_sym_COLON_COLON, + ACTIONS(3934), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54985] = 5, - ACTIONS(3845), 1, - anon_sym_fn, - ACTIONS(3847), 1, - anon_sym_extern, + ACTIONS(2606), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3518), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55069] = 9, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(3926), 1, + anon_sym_LT, + STATE(316), 1, + sym_declaration_list, + STATE(1715), 1, + sym_type_parameters, + STATE(1845), 1, + sym_trait_bounds, + STATE(2303), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1552), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3843), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [55006] = 4, - ACTIONS(3403), 1, - anon_sym_trait, - ACTIONS(3849), 1, - anon_sym_impl, + [55098] = 9, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(3926), 1, + anon_sym_LT, + STATE(897), 1, + sym_declaration_list, + STATE(1644), 1, + sym_type_parameters, + STATE(1795), 1, + sym_trait_bounds, + STATE(2214), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55127] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(3937), 8, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55025] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, - sym_identifier, - STATE(1860), 1, - sym_field_declaration, - STATE(2464), 1, - sym_visibility_modifier, + [55142] = 5, + ACTIONS(3941), 1, + anon_sym_fn, + ACTIONS(3943), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55052] = 5, - ACTIONS(3854), 1, + STATE(1576), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3939), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [55163] = 5, + ACTIONS(3948), 1, anon_sym_fn, - ACTIONS(3856), 1, + ACTIONS(3950), 1, anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1552), 2, + STATE(1576), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(3851), 4, + ACTIONS(3945), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [55073] = 8, - ACTIONS(3859), 1, + [55184] = 8, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3910), 1, + sym_identifier, + ACTIONS(3916), 1, + anon_sym_ref, + ACTIONS(3918), 1, + sym_mutable_specifier, + ACTIONS(3953), 1, + anon_sym_RBRACE, + ACTIONS(3955), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1983), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55211] = 6, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(3867), 1, - anon_sym_LBRACK, - STATE(1553), 1, - aux_sym_macro_definition_repeat1, - STATE(2488), 1, - sym_token_tree_pattern, - STATE(2495), 1, - sym_macro_rule, + ACTIONS(3512), 1, + anon_sym_COLON_COLON, + ACTIONS(3570), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3433), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [55234] = 7, + ACTIONS(2606), 1, + anon_sym_PLUS, + ACTIONS(3518), 1, + anon_sym_PIPE, + ACTIONS(3520), 1, + anon_sym_COLON, + ACTIONS(3656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3862), 2, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3934), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - [55100] = 4, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - STATE(1561), 1, - sym_string_literal, + anon_sym_COMMA, + [55259] = 8, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3957), 1, + sym_identifier, + ACTIONS(3959), 1, + sym_metavariable, + STATE(1645), 1, + sym_lifetime, + STATE(1862), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2119), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55286] = 4, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(3961), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3528), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55119] = 4, - ACTIONS(3494), 1, - anon_sym_COLON_COLON, - ACTIONS(3870), 1, - anon_sym_BANG, + [55305] = 4, + ACTIONS(3485), 1, + anon_sym_trait, + ACTIONS(3963), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55138] = 9, - ACTIONS(3722), 1, + [55324] = 4, + ACTIONS(3922), 1, + anon_sym_PLUS, + STATE(1555), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3965), 6, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_where, - ACTIONS(3750), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55343] = 9, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3926), 1, anon_sym_LT, - STATE(928), 1, + STATE(468), 1, sym_declaration_list, - STATE(1622), 1, + STATE(1716), 1, sym_type_parameters, - STATE(1827), 1, + STATE(1841), 1, sym_trait_bounds, - STATE(2267), 1, + STATE(2234), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55167] = 6, - ACTIONS(3345), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_COLON_COLON, - ACTIONS(3488), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [55190] = 8, - ACTIONS(2245), 1, + [55372] = 8, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3794), 1, sym_metavariable, - STATE(1833), 1, + STATE(1865), 1, sym_lifetime, - STATE(1990), 1, + STATE(1919), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, + STATE(2267), 2, sym_const_parameter, sym_optional_type_parameter, - [55217] = 8, + [55399] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3748), 1, sym_crate, - STATE(2122), 1, + STATE(2140), 1, sym_enum_variant, - STATE(2542), 1, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55244] = 6, - ACTIONS(2249), 1, + [55426] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3676), 1, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3682), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1854), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2132), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [55267] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3872), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55282] = 9, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(3812), 1, - anon_sym_LT, - STATE(378), 1, - sym_declaration_list, - STATE(1633), 1, - sym_type_parameters, - STATE(1823), 1, - sym_trait_bounds, - STATE(2226), 1, - sym_where_clause, + STATE(2203), 1, + sym_field_declaration, + STATE(2378), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55311] = 8, - ACTIONS(2245), 1, + STATE(1562), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [55453] = 8, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3704), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3874), 1, + ACTIONS(3957), 1, sym_identifier, - ACTIONS(3876), 1, + ACTIONS(3959), 1, sym_metavariable, - STATE(1748), 1, + STATE(1747), 1, sym_lifetime, - STATE(1830), 1, + STATE(1862), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2001), 2, + STATE(2119), 2, sym_const_parameter, sym_optional_type_parameter, - [55338] = 6, - ACTIONS(3456), 1, - anon_sym_PIPE, - ACTIONS(3458), 1, - anon_sym_COLON, - ACTIONS(3564), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2544), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [55361] = 4, - ACTIONS(2596), 1, + [55480] = 4, + ACTIONS(3538), 1, anon_sym_COLON_COLON, - ACTIONS(3878), 1, + ACTIONS(3654), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55380] = 4, - ACTIONS(888), 1, - anon_sym_LBRACE, - STATE(1435), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55399] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, + [55499] = 7, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3910), 1, sym_identifier, - STATE(2215), 1, - sym_field_declaration, - STATE(2464), 1, - sym_visibility_modifier, + ACTIONS(3916), 1, + anon_sym_ref, + ACTIONS(3918), 1, + sym_mutable_specifier, + ACTIONS(3967), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55426] = 9, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, + STATE(2211), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55523] = 8, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(3812), 1, - anon_sym_LT, - STATE(775), 1, - sym_declaration_list, - STATE(1680), 1, - sym_type_parameters, - STATE(1803), 1, - sym_trait_bounds, - STATE(2174), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55455] = 4, - ACTIONS(3882), 1, - anon_sym_PLUS, - STATE(1569), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(3973), 1, + anon_sym_RBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + STATE(1550), 1, + aux_sym_macro_definition_repeat1, + STATE(2160), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3880), 6, - anon_sym_SEMI, + [55549] = 8, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55474] = 7, - ACTIONS(2544), 1, - anon_sym_PLUS, - ACTIONS(3456), 1, - anon_sym_PIPE, - ACTIONS(3458), 1, - anon_sym_COLON, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3814), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55499] = 2, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(3977), 1, + anon_sym_RBRACE, + STATE(1591), 1, + aux_sym_macro_definition_repeat1, + STATE(2202), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, - anon_sym_SEMI, + [55575] = 8, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55513] = 2, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(3979), 1, + anon_sym_RBRACE, + STATE(1611), 1, + aux_sym_macro_definition_repeat1, + STATE(2305), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, - anon_sym_SEMI, + [55601] = 8, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55527] = 2, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(3981), 1, + anon_sym_RPAREN, + STATE(1607), 1, + aux_sym_macro_definition_repeat1, + STATE(2304), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55541] = 8, - ACTIONS(3885), 1, + [55627] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3887), 1, - anon_sym_RPAREN, - ACTIONS(3889), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - STATE(1588), 1, + ACTIONS(3983), 1, + anon_sym_RBRACE, + STATE(1605), 1, aux_sym_macro_definition_repeat1, - STATE(2277), 1, + STATE(2299), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55567] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3880), 7, - anon_sym_SEMI, + [55653] = 6, + ACTIONS(3798), 1, + anon_sym_LPAREN, + ACTIONS(3828), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + ACTIONS(3987), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55581] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3985), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [55595] = 6, - ACTIONS(3893), 1, + STATE(1998), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55675] = 6, + ACTIONS(3989), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3993), 1, anon_sym_EQ, - ACTIONS(3899), 1, + ACTIONS(3995), 1, anon_sym_COLON_COLON, - STATE(2009), 1, + STATE(2124), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3895), 3, + ACTIONS(3991), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [55617] = 8, - ACTIONS(3885), 1, + [55697] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(3901), 1, + ACTIONS(3997), 1, anon_sym_RPAREN, - STATE(1589), 1, + STATE(1604), 1, aux_sym_macro_definition_repeat1, - STATE(2274), 1, + STATE(2292), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55643] = 7, - ACTIONS(3343), 1, - anon_sym_PIPE, - ACTIONS(3345), 1, - anon_sym_LPAREN, - ACTIONS(3349), 1, - anon_sym_COLON, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3903), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55667] = 8, - ACTIONS(3718), 1, + [55723] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3905), 1, - anon_sym_SEMI, - STATE(784), 1, - sym_field_declaration_list, - STATE(2090), 1, - sym_ordered_field_declaration_list, - STATE(2171), 1, - sym_where_clause, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(3999), 1, + anon_sym_RPAREN, + STATE(1550), 1, + aux_sym_macro_definition_repeat1, + STATE(2264), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55693] = 6, - ACTIONS(3893), 1, + [55749] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_EQ, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - STATE(2009), 1, - sym_meta_arguments, + ACTIONS(3971), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(4001), 1, + anon_sym_RPAREN, + STATE(1550), 1, + aux_sym_macro_definition_repeat1, + STATE(2266), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3895), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55715] = 2, + [55775] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3909), 7, + ACTIONS(4003), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -116068,9121 +117555,9129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55729] = 6, - ACTIONS(3893), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_EQ, - ACTIONS(3911), 1, - anon_sym_COLON_COLON, - STATE(2009), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3895), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55751] = 6, - ACTIONS(3494), 1, - anon_sym_COLON_COLON, - ACTIONS(3893), 1, - anon_sym_LPAREN, - ACTIONS(3915), 1, - anon_sym_EQ, - STATE(2021), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3913), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55773] = 6, - ACTIONS(3718), 1, - anon_sym_LPAREN, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3917), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2056), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55795] = 3, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, + [55789] = 3, + ACTIONS(4005), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(3878), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55811] = 3, - ACTIONS(3921), 1, + [55805] = 7, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3910), 1, sym_identifier, + ACTIONS(3916), 1, + anon_sym_ref, + ACTIONS(3918), 1, + sym_mutable_specifier, + ACTIONS(4007), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55827] = 8, - ACTIONS(3885), 1, + STATE(2211), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55829] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(4009), 1, anon_sym_RPAREN, - STATE(1553), 1, + STATE(1550), 1, aux_sym_macro_definition_repeat1, - STATE(2249), 1, + STATE(2283), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55853] = 8, - ACTIONS(3885), 1, + [55855] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(3925), 1, - anon_sym_RPAREN, - STATE(1553), 1, + ACTIONS(4011), 1, + anon_sym_RBRACE, + STATE(1550), 1, aux_sym_macro_definition_repeat1, - STATE(2247), 1, + STATE(2281), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55879] = 7, - ACTIONS(828), 1, - anon_sym_DOT_DOT, - ACTIONS(3817), 1, - sym_identifier, - ACTIONS(3823), 1, - anon_sym_ref, - ACTIONS(3825), 1, - sym_mutable_specifier, - ACTIONS(3927), 1, - anon_sym_RBRACE, + [55881] = 8, + ACTIONS(3798), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4013), 1, + anon_sym_SEMI, + STATE(456), 1, + sym_field_declaration_list, + STATE(1932), 1, + sym_ordered_field_declaration_list, + STATE(2237), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55903] = 7, - ACTIONS(828), 1, - anon_sym_DOT_DOT, - ACTIONS(3817), 1, - sym_identifier, - ACTIONS(3823), 1, - anon_sym_ref, - ACTIONS(3825), 1, - sym_mutable_specifier, - ACTIONS(3929), 1, - anon_sym_RBRACE, + [55907] = 8, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(4015), 1, + anon_sym_RPAREN, + STATE(1550), 1, + aux_sym_macro_definition_repeat1, + STATE(2277), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55927] = 3, - ACTIONS(3931), 1, - sym_identifier, + [55933] = 8, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(4017), 1, + anon_sym_RPAREN, + STATE(1600), 1, + aux_sym_macro_definition_repeat1, + STATE(2291), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55943] = 3, - ACTIONS(3933), 1, - anon_sym_trait, + [55959] = 3, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55959] = 8, - ACTIONS(3885), 1, + [55975] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_RPAREN, - STATE(1602), 1, + ACTIONS(4019), 1, + anon_sym_RBRACE, + STATE(1550), 1, + aux_sym_macro_definition_repeat1, + STATE(2162), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56001] = 8, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(4021), 1, + anon_sym_RBRACE, + STATE(1550), 1, aux_sym_macro_definition_repeat1, - STATE(2199), 1, + STATE(2274), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55985] = 3, - ACTIONS(3436), 1, + [56027] = 7, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3433), 1, + anon_sym_PIPE, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3439), 1, + anon_sym_COLON, + ACTIONS(4023), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56051] = 3, + ACTIONS(4025), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3878), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56001] = 7, - ACTIONS(828), 1, - anon_sym_DOT_DOT, - ACTIONS(3817), 1, - sym_identifier, - ACTIONS(3823), 1, - anon_sym_ref, - ACTIONS(3825), 1, - sym_mutable_specifier, - ACTIONS(3937), 1, + [56067] = 8, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(4027), 1, anon_sym_RBRACE, + STATE(1610), 1, + aux_sym_macro_definition_repeat1, + STATE(2200), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56025] = 7, - ACTIONS(828), 1, - anon_sym_DOT_DOT, - ACTIONS(3817), 1, - sym_identifier, - ACTIONS(3823), 1, - anon_sym_ref, - ACTIONS(3825), 1, - sym_mutable_specifier, - ACTIONS(3939), 1, - anon_sym_RBRACE, + [56093] = 6, + ACTIONS(3798), 1, + anon_sym_LPAREN, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56049] = 8, - ACTIONS(3885), 1, + ACTIONS(4029), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2036), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [56115] = 8, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_RBRACE, - STATE(1604), 1, - aux_sym_macro_definition_repeat1, - STATE(2224), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4033), 1, + anon_sym_SEMI, + STATE(352), 1, + sym_field_declaration_list, + STATE(2082), 1, + sym_ordered_field_declaration_list, + STATE(2317), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56075] = 8, - ACTIONS(3718), 1, + [56141] = 8, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3722), 1, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3744), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(3943), 1, + ACTIONS(4035), 1, anon_sym_SEMI, - STATE(366), 1, + STATE(795), 1, sym_field_declaration_list, - STATE(1870), 1, + STATE(2071), 1, sym_ordered_field_declaration_list, - STATE(2129), 1, + STATE(2186), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56101] = 8, - ACTIONS(3885), 1, + [56167] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(3945), 1, - anon_sym_RBRACE, - STATE(1553), 1, + ACTIONS(4037), 1, + anon_sym_RPAREN, + STATE(1599), 1, aux_sym_macro_definition_repeat1, - STATE(2126), 1, + STATE(2289), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56127] = 6, - ACTIONS(3718), 1, + [56193] = 6, + ACTIONS(3989), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3949), 1, + ACTIONS(3993), 1, anon_sym_EQ, + ACTIONS(4039), 1, + anon_sym_COLON_COLON, + STATE(2124), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3947), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1917), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [56149] = 8, - ACTIONS(3885), 1, - anon_sym_LPAREN, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3951), 1, + ACTIONS(3991), 3, anon_sym_RPAREN, - STATE(1553), 1, - aux_sym_macro_definition_repeat1, - STATE(2244), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + anon_sym_RBRACK, + anon_sym_COMMA, + [56215] = 7, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3910), 1, + sym_identifier, + ACTIONS(3916), 1, + anon_sym_ref, + ACTIONS(3918), 1, + sym_mutable_specifier, + ACTIONS(4041), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56175] = 2, + STATE(2211), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56239] = 6, + ACTIONS(3989), 1, + anon_sym_LPAREN, + ACTIONS(3993), 1, + anon_sym_EQ, + ACTIONS(4043), 1, + anon_sym_COLON_COLON, + STATE(2124), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3953), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3991), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, - [56189] = 8, - ACTIONS(3885), 1, + [56261] = 8, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3955), 1, - anon_sym_RBRACE, - STATE(1553), 1, - aux_sym_macro_definition_repeat1, - STATE(2127), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + ACTIONS(4045), 1, + anon_sym_SEMI, + STATE(937), 1, + sym_field_declaration_list, + STATE(2106), 1, + sym_ordered_field_declaration_list, + STATE(2167), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56215] = 8, - ACTIONS(3885), 1, - anon_sym_LPAREN, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - anon_sym_RBRACE, - STATE(1600), 1, - aux_sym_macro_definition_repeat1, - STATE(2220), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + [56287] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3905), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56301] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56241] = 3, - ACTIONS(3959), 1, - sym_identifier, + ACTIONS(3905), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56315] = 3, + ACTIONS(4047), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56257] = 8, - ACTIONS(3885), 1, - anon_sym_LPAREN, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3961), 1, - anon_sym_RBRACE, - STATE(1610), 1, - aux_sym_macro_definition_repeat1, - STATE(2176), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + [56331] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56283] = 8, - ACTIONS(3885), 1, - anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3905), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_RBRACE, - STATE(1553), 1, - aux_sym_macro_definition_repeat1, - STATE(2305), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56345] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56309] = 8, - ACTIONS(3885), 1, - anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(4049), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3965), 1, - anon_sym_RPAREN, - STATE(1553), 1, - aux_sym_macro_definition_repeat1, - STATE(2252), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56359] = 3, + ACTIONS(2720), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56335] = 8, - ACTIONS(3885), 1, - anon_sym_LPAREN, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3967), 1, - anon_sym_RBRACE, - STATE(1553), 1, - aux_sym_macro_definition_repeat1, - STATE(2257), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56375] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56361] = 3, - ACTIONS(3969), 1, + ACTIONS(3905), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56389] = 3, + ACTIONS(4051), 1, anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56377] = 8, - ACTIONS(3718), 1, - anon_sym_LPAREN, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3744), 1, - anon_sym_LBRACE, - ACTIONS(3971), 1, - anon_sym_SEMI, - STATE(346), 1, - sym_field_declaration_list, - STATE(2114), 1, - sym_ordered_field_declaration_list, - STATE(2138), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56403] = 8, - ACTIONS(3885), 1, - anon_sym_LPAREN, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_RPAREN, - STATE(1609), 1, - aux_sym_macro_definition_repeat1, - STATE(2178), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + [56405] = 7, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3910), 1, + sym_identifier, + ACTIONS(3916), 1, + anon_sym_ref, + ACTIONS(3918), 1, + sym_mutable_specifier, + ACTIONS(4053), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56429] = 8, - ACTIONS(3885), 1, - anon_sym_LPAREN, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3975), 1, - anon_sym_RBRACE, - STATE(1608), 1, - aux_sym_macro_definition_repeat1, - STATE(2190), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + STATE(2211), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56429] = 3, + ACTIONS(4055), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56455] = 3, - ACTIONS(3977), 1, + ACTIONS(3878), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56445] = 3, + ACTIONS(4057), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, + ACTIONS(3878), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56471] = 8, - ACTIONS(3718), 1, + [56461] = 6, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(3989), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3979), 1, - anon_sym_SEMI, - STATE(968), 1, - sym_field_declaration_list, - STATE(2091), 1, - sym_ordered_field_declaration_list, - STATE(2167), 1, - sym_where_clause, + ACTIONS(4061), 1, + anon_sym_EQ, + STATE(2117), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56497] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(3981), 1, + ACTIONS(4059), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [56483] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3905), 7, anon_sym_SEMI, - ACTIONS(3983), 1, + anon_sym_LBRACE, anon_sym_PLUS, - STATE(816), 1, - sym_declaration_list, - STATE(2098), 1, - sym_where_clause, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56497] = 5, + ACTIONS(4065), 1, + anon_sym_COLON, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56520] = 7, - ACTIONS(3722), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4063), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56516] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(4069), 1, + anon_sym_SEMI, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(3985), 1, - anon_sym_SEMI, - STATE(454), 1, - sym_declaration_list, - STATE(1882), 1, + STATE(836), 1, + sym_block, + STATE(2050), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56543] = 7, - ACTIONS(3722), 1, + [56539] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3804), 1, anon_sym_LT, - ACTIONS(3987), 1, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(923), 1, + STATE(803), 1, sym_enum_variant_list, - STATE(1814), 1, + STATE(1778), 1, sym_type_parameters, - STATE(2147), 1, + STATE(2230), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56566] = 4, + [56562] = 4, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3646), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3989), 2, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2606), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [56583] = 7, - ACTIONS(3722), 1, + [56579] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(3992), 1, + ACTIONS(4077), 1, anon_sym_SEMI, - STATE(941), 1, - sym_declaration_list, - STATE(2100), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56606] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(961), 1, + STATE(309), 1, sym_declaration_list, - STATE(1816), 1, - sym_trait_bounds, - STATE(2163), 1, + STATE(2125), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56629] = 4, - ACTIONS(3440), 1, + [56602] = 4, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3790), 1, + ACTIONS(3838), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56646] = 7, - ACTIONS(3722), 1, + [56619] = 7, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(3532), 1, + anon_sym_COMMA, + ACTIONS(3534), 1, + anon_sym_GT, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(2038), 1, + sym_trait_bounds, + STATE(2044), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56642] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(3994), 1, + ACTIONS(4079), 1, anon_sym_SEMI, - STATE(1004), 1, - sym_declaration_list, - STATE(2076), 1, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4083), 1, + anon_sym_DASH_GT, + STATE(335), 1, + sym_block, + STATE(1971), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56669] = 7, - ACTIONS(3722), 1, + [56665] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(3996), 1, - anon_sym_SEMI, - STATE(451), 1, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(926), 1, sym_declaration_list, - STATE(1967), 1, + STATE(1853), 1, + sym_trait_bounds, + STATE(2251), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56692] = 7, - ACTIONS(3722), 1, + [56688] = 7, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(4085), 1, + anon_sym_COMMA, + ACTIONS(4087), 1, + anon_sym_GT, + STATE(1930), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2045), 1, + aux_sym_type_parameters_repeat1, + STATE(2049), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56711] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(3998), 1, + ACTIONS(4089), 1, anon_sym_SEMI, - STATE(447), 1, + STATE(981), 1, sym_declaration_list, - STATE(1920), 1, + STATE(1973), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56715] = 7, - ACTIONS(3722), 1, + [56734] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4000), 1, + ACTIONS(4091), 1, anon_sym_SEMI, - STATE(335), 1, + STATE(972), 1, sym_declaration_list, - STATE(2088), 1, + STATE(2091), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56738] = 4, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3780), 1, - anon_sym_for, + [56757] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4093), 1, + anon_sym_SEMI, + STATE(917), 1, + sym_declaration_list, + STATE(2115), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56755] = 7, - ACTIONS(3722), 1, + [56780] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4002), 1, - anon_sym_SEMI, - ACTIONS(4004), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4006), 1, - anon_sym_DASH_GT, - STATE(1025), 1, + ACTIONS(4095), 1, + anon_sym_SEMI, + STATE(289), 1, sym_block, - STATE(2062), 1, + STATE(2145), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56778] = 4, - ACTIONS(3440), 1, + [56803] = 4, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3788), 1, + ACTIONS(3874), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56795] = 7, - ACTIONS(3722), 1, + [56820] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4008), 1, + ACTIONS(4097), 1, anon_sym_SEMI, - ACTIONS(4010), 1, - anon_sym_LBRACE, - STATE(423), 1, - sym_block, - STATE(1883), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56818] = 7, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - STATE(917), 1, - sym_field_declaration_list, - STATE(1810), 1, - sym_type_parameters, - STATE(2140), 1, + STATE(480), 1, + sym_declaration_list, + STATE(2057), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56841] = 7, - ACTIONS(3722), 1, + [56843] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3924), 1, anon_sym_COLON, - STATE(355), 1, + STATE(342), 1, sym_declaration_list, - STATE(1800), 1, + STATE(1831), 1, sym_trait_bounds, - STATE(2221), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56864] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4012), 1, - anon_sym_SEMI, - STATE(404), 1, - sym_declaration_list, - STATE(1939), 1, + STATE(2312), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56887] = 4, - ACTIONS(3440), 1, + [56866] = 4, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3782), 1, + ACTIONS(3882), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56904] = 7, - ACTIONS(3237), 1, + [56883] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(4075), 1, anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4014), 1, - sym_identifier, - ACTIONS(4016), 1, - anon_sym_STAR, - STATE(2059), 1, - sym_use_list, - STATE(2311), 1, - sym_type_arguments, + STATE(911), 1, + sym_enum_variant_list, + STATE(1870), 1, + sym_type_parameters, + STATE(2155), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56927] = 7, - ACTIONS(3720), 1, + [56906] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(4099), 1, + anon_sym_SEMI, + ACTIONS(4101), 1, + anon_sym_DASH_GT, + STATE(277), 1, + sym_block, + STATE(2142), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56929] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3804), 1, anon_sym_LT, - STATE(937), 1, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(902), 1, sym_field_declaration_list, - STATE(1825), 1, + STATE(1872), 1, sym_type_parameters, - STATE(2255), 1, + STATE(2157), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56950] = 7, - ACTIONS(3722), 1, + [56952] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4018), 1, + ACTIONS(4103), 1, anon_sym_SEMI, - STATE(299), 1, + STATE(424), 1, sym_block, - STATE(1876), 1, + STATE(1890), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56973] = 7, - ACTIONS(3446), 1, - anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(4020), 1, - anon_sym_COMMA, - ACTIONS(4022), 1, - anon_sym_GT, - STATE(1994), 1, - sym_trait_bounds, - STATE(2071), 1, - aux_sym_type_parameters_repeat1, + [56975] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4105), 1, + anon_sym_SEMI, + STATE(951), 1, + sym_block, + STATE(1989), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56996] = 7, - ACTIONS(3722), 1, + [56998] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4024), 1, + ACTIONS(4107), 1, anon_sym_SEMI, - STATE(396), 1, + STATE(301), 1, sym_declaration_list, - STATE(1938), 1, + STATE(1999), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57019] = 7, + [57021] = 7, + ACTIONS(3802), 1, + anon_sym_where, ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(4026), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4109), 1, anon_sym_SEMI, - ACTIONS(4028), 1, - anon_sym_EQ, - STATE(1826), 1, - sym_type_parameters, - STATE(2412), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57042] = 4, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3774), 1, - anon_sym_for, + STATE(983), 1, + sym_declaration_list, + STATE(1969), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57059] = 7, - ACTIONS(3722), 1, + [57044] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4030), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4111), 1, anon_sym_SEMI, - STATE(300), 1, + STATE(991), 1, sym_block, - STATE(1894), 1, + STATE(1967), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57082] = 7, - ACTIONS(3722), 1, + [57067] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4032), 1, + ACTIONS(4113), 1, anon_sym_SEMI, - STATE(424), 1, - sym_declaration_list, - STATE(2008), 1, + ACTIONS(4115), 1, + anon_sym_DASH_GT, + STATE(1006), 1, + sym_block, + STATE(1963), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57105] = 7, - ACTIONS(3722), 1, + [57090] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4034), 1, + ACTIONS(4117), 1, anon_sym_SEMI, - ACTIONS(4036), 1, + ACTIONS(4119), 1, anon_sym_DASH_GT, - STATE(890), 1, + STATE(1008), 1, sym_block, - STATE(2115), 1, + STATE(2077), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57128] = 7, - ACTIONS(3722), 1, + [57113] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4038), 1, + ACTIONS(4121), 1, anon_sym_SEMI, - STATE(895), 1, + STATE(320), 1, sym_declaration_list, - STATE(2007), 1, + STATE(2095), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57151] = 4, - ACTIONS(4040), 1, - anon_sym_COLON_COLON, + [57136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2544), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(3642), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2712), 4, + anon_sym_RPAREN, anon_sym_PLUS, - [57168] = 7, - ACTIONS(3237), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4014), 1, - sym_identifier, - ACTIONS(4016), 1, - anon_sym_STAR, - STATE(2059), 1, - sym_use_list, - STATE(2443), 1, - sym_type_arguments, + anon_sym_COMMA, + anon_sym_DASH_GT, + [57151] = 5, + ACTIONS(4125), 1, + anon_sym_COLON, + ACTIONS(4127), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57191] = 7, - ACTIONS(3722), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4123), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57170] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4042), 1, + ACTIONS(4129), 1, anon_sym_SEMI, - STATE(874), 1, - sym_declaration_list, - STATE(2110), 1, + ACTIONS(4131), 1, + anon_sym_DASH_GT, + STATE(942), 1, + sym_block, + STATE(2003), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57214] = 7, - ACTIONS(3722), 1, + [57193] = 7, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(4133), 1, + anon_sym_COMMA, + ACTIONS(4135), 1, + anon_sym_GT, + STATE(2038), 1, + sym_trait_bounds, + STATE(2086), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57216] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4044), 1, - anon_sym_SEMI, - STATE(479), 1, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(940), 1, sym_declaration_list, - STATE(2053), 1, + STATE(1801), 1, + sym_trait_bounds, + STATE(2225), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57237] = 4, - ACTIONS(3440), 1, + [57239] = 4, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3734), 1, + ACTIONS(3834), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57254] = 7, - ACTIONS(3722), 1, + [57256] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(4046), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - STATE(276), 1, - sym_enum_variant_list, - STATE(1788), 1, - sym_type_parameters, - STATE(2264), 1, + ACTIONS(4137), 1, + anon_sym_SEMI, + ACTIONS(4139), 1, + anon_sym_DASH_GT, + STATE(879), 1, + sym_block, + STATE(2109), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57277] = 6, + [57279] = 6, ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3817), 1, + ACTIONS(3910), 1, sym_identifier, - ACTIONS(3823), 1, + ACTIONS(3916), 1, anon_sym_ref, - ACTIONS(3825), 1, + ACTIONS(3918), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2266), 2, + STATE(2211), 2, sym_field_pattern, sym_remaining_field_pattern, - [57298] = 7, - ACTIONS(3722), 1, + [57300] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4048), 1, + ACTIONS(4141), 1, anon_sym_SEMI, - STATE(859), 1, + STATE(863), 1, sym_declaration_list, - STATE(2109), 1, + STATE(2129), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57321] = 7, - ACTIONS(3722), 1, + [57323] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4050), 1, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4143), 1, anon_sym_SEMI, - STATE(415), 1, - sym_declaration_list, - STATE(2004), 1, + STATE(464), 1, + sym_block, + STATE(2060), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57344] = 7, - ACTIONS(3722), 1, + [57346] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4052), 1, + ACTIONS(4145), 1, anon_sym_SEMI, - STATE(305), 1, + STATE(334), 1, sym_block, - STATE(2024), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57367] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(3987), 1, - anon_sym_LBRACE, - STATE(847), 1, - sym_enum_variant_list, - STATE(1834), 1, - sym_type_parameters, - STATE(2284), 1, + STATE(2114), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57390] = 7, - ACTIONS(3722), 1, + [57369] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, ACTIONS(3810), 1, - anon_sym_COLON, - STATE(798), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4147), 1, + anon_sym_SEMI, + STATE(845), 1, sym_declaration_list, - STATE(1804), 1, - sym_trait_bounds, - STATE(2161), 1, + STATE(2136), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57413] = 7, - ACTIONS(3722), 1, + [57392] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4054), 1, + ACTIONS(4149), 1, anon_sym_SEMI, - ACTIONS(4056), 1, + ACTIONS(4151), 1, anon_sym_DASH_GT, - STATE(794), 1, + STATE(910), 1, sym_block, - STATE(2093), 1, + STATE(2011), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57436] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3646), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2648), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [57451] = 7, - ACTIONS(3722), 1, + [57415] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4058), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4153), 1, anon_sym_SEMI, - ACTIONS(4060), 1, - anon_sym_DASH_GT, - STATE(338), 1, - sym_block, - STATE(1930), 1, + STATE(892), 1, + sym_declaration_list, + STATE(2018), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57474] = 7, - ACTIONS(3722), 1, + [57438] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, - anon_sym_LBRACE, ACTIONS(3810), 1, - anon_sym_COLON, - STATE(395), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4155), 1, + anon_sym_SEMI, + STATE(883), 1, sym_declaration_list, - STATE(1821), 1, - sym_trait_bounds, - STATE(2200), 1, + STATE(2027), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57497] = 5, - ACTIONS(4064), 1, - anon_sym_COLON, - ACTIONS(4066), 1, - anon_sym_COLON_COLON, + [57461] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4157), 1, + anon_sym_SEMI, + STATE(314), 1, + sym_declaration_list, + STATE(2031), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4062), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57516] = 7, - ACTIONS(3722), 1, + [57484] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4068), 1, + ACTIONS(4159), 1, anon_sym_SEMI, - STATE(349), 1, + STATE(317), 1, sym_declaration_list, - STATE(2118), 1, + STATE(2126), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57539] = 4, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3710), 1, - anon_sym_for, + [57507] = 7, + ACTIONS(2453), 1, + anon_sym_PLUS, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(4161), 1, + anon_sym_COMMA, + ACTIONS(4163), 1, + anon_sym_GT, + STATE(2045), 1, + aux_sym_type_parameters_repeat1, + STATE(2049), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57556] = 7, - ACTIONS(3722), 1, + [57530] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4070), 1, + ACTIONS(4165), 1, anon_sym_SEMI, - STATE(430), 1, + STATE(276), 1, sym_declaration_list, - STATE(1956), 1, + STATE(2032), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57579] = 4, - ACTIONS(4072), 1, + [57553] = 4, + ACTIONS(4167), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2544), 3, + ACTIONS(2606), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [57596] = 5, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4076), 1, + [57570] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4169), 1, + anon_sym_SEMI, + STATE(371), 1, + sym_declaration_list, + STATE(1899), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57593] = 5, + ACTIONS(4065), 1, anon_sym_COLON, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4074), 2, + ACTIONS(4063), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57615] = 7, - ACTIONS(3722), 1, + [57612] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(4171), 1, anon_sym_LBRACE, - ACTIONS(4078), 1, - anon_sym_SEMI, - ACTIONS(4080), 1, - anon_sym_DASH_GT, - STATE(393), 1, - sym_block, - STATE(1875), 1, + STATE(273), 1, + sym_enum_variant_list, + STATE(1866), 1, + sym_type_parameters, + STATE(2148), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57638] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4004), 1, - anon_sym_LBRACE, - ACTIONS(4082), 1, - anon_sym_SEMI, - STATE(785), 1, - sym_block, - STATE(2083), 1, - sym_where_clause, + [57635] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57661] = 7, - ACTIONS(2405), 1, + ACTIONS(2712), 2, anon_sym_PLUS, - ACTIONS(3810), 1, + anon_sym_DASH_GT, + ACTIONS(3642), 2, anon_sym_COLON, - ACTIONS(4084), 1, + anon_sym_PIPE, + ACTIONS(4173), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4086), 1, - anon_sym_GT, - STATE(1963), 1, - sym_trait_bounds, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, + [57652] = 4, + ACTIONS(4176), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57684] = 7, - ACTIONS(3722), 1, + ACTIONS(3620), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2758), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [57669] = 4, + ACTIONS(4173), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3642), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2712), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [57686] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4088), 1, + ACTIONS(4179), 1, anon_sym_SEMI, - STATE(813), 1, + STATE(796), 1, sym_declaration_list, - STATE(2082), 1, + STATE(2100), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57707] = 7, - ACTIONS(3722), 1, + [57709] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, - anon_sym_LBRACE, ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, anon_sym_COLON, - STATE(317), 1, + STATE(966), 1, sym_declaration_list, - STATE(1773), 1, + STATE(1852), 1, sym_trait_bounds, - STATE(2271), 1, + STATE(2176), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57730] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, + [57732] = 7, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4090), 1, - anon_sym_SEMI, - STATE(815), 1, - sym_declaration_list, - STATE(2077), 1, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(260), 1, + sym_field_declaration_list, + STATE(1787), 1, + sym_type_parameters, + STATE(2287), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57753] = 6, - ACTIONS(3115), 1, + [57755] = 4, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(4084), 1, - anon_sym_COMMA, - ACTIONS(4086), 1, - anon_sym_GT, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3846), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_as, - [57774] = 7, - ACTIONS(3722), 1, anon_sym_where, - ACTIONS(4010), 1, + [57772] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4181), 1, anon_sym_SEMI, - ACTIONS(4094), 1, - anon_sym_DASH_GT, - STATE(307), 1, - sym_block, - STATE(1929), 1, + STATE(384), 1, + sym_declaration_list, + STATE(1897), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57797] = 7, - ACTIONS(3722), 1, + [57795] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(4171), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4096), 1, - anon_sym_SEMI, - STATE(849), 1, - sym_declaration_list, - STATE(2067), 1, + STATE(265), 1, + sym_enum_variant_list, + STATE(1833), 1, + sym_type_parameters, + STATE(2295), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57820] = 7, - ACTIONS(3722), 1, + [57818] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4098), 1, + ACTIONS(4183), 1, anon_sym_SEMI, - STATE(860), 1, - sym_declaration_list, - STATE(2057), 1, + ACTIONS(4185), 1, + anon_sym_DASH_GT, + STATE(801), 1, + sym_block, + STATE(2092), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57843] = 7, - ACTIONS(3722), 1, + [57841] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4100), 1, + ACTIONS(4187), 1, anon_sym_SEMI, - ACTIONS(4102), 1, + ACTIONS(4189), 1, anon_sym_DASH_GT, - STATE(870), 1, + STATE(448), 1, sym_block, - STATE(1861), 1, + STATE(1950), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57866] = 7, - ACTIONS(3722), 1, + [57864] = 6, + ACTIONS(3195), 1, + anon_sym_COLON_COLON, + ACTIONS(4161), 1, + anon_sym_COMMA, + ACTIONS(4163), 1, + anon_sym_GT, + STATE(2045), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 2, + anon_sym_PLUS, + anon_sym_as, + [57885] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(902), 1, - sym_declaration_list, - STATE(1797), 1, - sym_trait_bounds, - STATE(2207), 1, + STATE(952), 1, + sym_field_declaration_list, + STATE(1793), 1, + sym_type_parameters, + STATE(2182), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57889] = 7, - ACTIONS(3722), 1, + [57908] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4104), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4191), 1, anon_sym_SEMI, - ACTIONS(4106), 1, - anon_sym_DASH_GT, - STATE(912), 1, - sym_block, - STATE(2054), 1, + STATE(349), 1, + sym_declaration_list, + STATE(2130), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57912] = 7, - ACTIONS(3722), 1, + [57931] = 7, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(3926), 1, + anon_sym_LT, + ACTIONS(4193), 1, + anon_sym_SEMI, + ACTIONS(4195), 1, + anon_sym_EQ, + STATE(1794), 1, + sym_type_parameters, + STATE(2518), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57954] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4108), 1, + ACTIONS(4197), 1, anon_sym_SEMI, - STATE(934), 1, + ACTIONS(4199), 1, + anon_sym_DASH_GT, + STATE(311), 1, sym_block, - STATE(2050), 1, + STATE(2040), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57935] = 7, - ACTIONS(3722), 1, + [57977] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(4046), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - STATE(263), 1, - sym_enum_variant_list, - STATE(1859), 1, - sym_type_parameters, - STATE(2202), 1, + ACTIONS(4201), 1, + anon_sym_SEMI, + ACTIONS(4203), 1, + anon_sym_DASH_GT, + STATE(445), 1, + sym_block, + STATE(1926), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57958] = 4, - ACTIONS(3440), 1, + [58000] = 4, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3776), 1, + ACTIONS(3864), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57975] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, + [58017] = 7, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4110), 1, - anon_sym_SEMI, - STATE(984), 1, - sym_declaration_list, - STATE(2045), 1, - sym_where_clause, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4205), 1, + sym_identifier, + ACTIONS(4207), 1, + anon_sym_STAR, + STATE(2116), 1, + sym_use_list, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57998] = 7, - ACTIONS(3722), 1, + [58040] = 7, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3804), 1, anon_sym_LT, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(292), 1, + STATE(386), 1, sym_field_declaration_list, - STATE(1858), 1, + STATE(1851), 1, sym_type_parameters, - STATE(2187), 1, + STATE(2220), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58021] = 4, - ACTIONS(3989), 1, - anon_sym_RBRACK, + [58063] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4209), 1, + anon_sym_SEMI, + STATE(431), 1, + sym_block, + STATE(2069), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2648), 3, + [58086] = 4, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, + ACTIONS(3818), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 4, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH_GT, - [58038] = 4, - ACTIONS(4112), 1, - anon_sym_RBRACK, + anon_sym_where, + [58103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 2, - anon_sym_COMMA, + ACTIONS(3620), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2688), 3, - anon_sym_SEMI, + ACTIONS(2758), 4, + anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_DASH_GT, - [58055] = 7, - ACTIONS(3722), 1, + [58118] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4115), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4211), 1, anon_sym_SEMI, - STATE(302), 1, - sym_block, - STATE(1878), 1, + STATE(861), 1, + sym_declaration_list, + STATE(2022), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58078] = 7, - ACTIONS(3722), 1, + [58141] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4117), 1, + ACTIONS(4213), 1, anon_sym_SEMI, - STATE(986), 1, + STATE(393), 1, sym_declaration_list, - STATE(2044), 1, + STATE(2019), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58101] = 7, - ACTIONS(3722), 1, + [58164] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4119), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4215), 1, anon_sym_SEMI, - STATE(999), 1, + STATE(985), 1, sym_block, - STATE(2043), 1, + STATE(1948), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58124] = 7, - ACTIONS(3722), 1, + [58187] = 4, + ACTIONS(4217), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2606), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [58204] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, - anon_sym_SEMI, - ACTIONS(4123), 1, - anon_sym_DASH_GT, - STATE(1023), 1, - sym_block, - STATE(2040), 1, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(439), 1, + sym_declaration_list, + STATE(1868), 1, + sym_trait_bounds, + STATE(2256), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58147] = 7, - ACTIONS(3722), 1, + [58227] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4125), 1, - anon_sym_SEMI, - STATE(974), 1, - sym_block, - STATE(2038), 1, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(375), 1, + sym_declaration_list, + STATE(1790), 1, + sym_trait_bounds, + STATE(2194), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58170] = 7, - ACTIONS(3722), 1, + [58250] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4127), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4219), 1, anon_sym_SEMI, - STATE(942), 1, + STATE(1036), 1, sym_block, - STATE(2036), 1, + STATE(1954), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58193] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3983), 1, + [58273] = 7, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4205), 1, + sym_identifier, + ACTIONS(4207), 1, + anon_sym_STAR, + STATE(2116), 1, + sym_use_list, + STATE(2338), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58296] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2758), 2, anon_sym_PLUS, - ACTIONS(4004), 1, + anon_sym_DASH_GT, + ACTIONS(3620), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4176), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58313] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4129), 1, + ACTIONS(4221), 1, anon_sym_SEMI, - STATE(901), 1, + ACTIONS(4223), 1, + anon_sym_DASH_GT, + STATE(303), 1, sym_block, - STATE(2034), 1, + STATE(2048), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58216] = 7, - ACTIONS(3810), 1, + [58336] = 7, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3926), 1, anon_sym_LT, - ACTIONS(4131), 1, + ACTIONS(4225), 1, anon_sym_SEMI, - ACTIONS(4133), 1, + ACTIONS(4227), 1, anon_sym_EQ, - STATE(1824), 1, + STATE(1798), 1, sym_type_parameters, - STATE(2396), 1, + STATE(2513), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58239] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3594), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2688), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [58254] = 7, - ACTIONS(3722), 1, + [58359] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4135), 1, + ACTIONS(4229), 1, anon_sym_SEMI, - STATE(459), 1, + STATE(852), 1, sym_declaration_list, - STATE(1881), 1, + STATE(2042), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58277] = 7, - ACTIONS(3722), 1, + [58382] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4137), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4231), 1, anon_sym_SEMI, - STATE(256), 1, - sym_block, - STATE(1905), 1, + STATE(856), 1, + sym_declaration_list, + STATE(2041), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58300] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4139), 1, - anon_sym_SEMI, - ACTIONS(4141), 1, - anon_sym_DASH_GT, - STATE(271), 1, - sym_block, - STATE(2023), 1, - sym_where_clause, + [58405] = 4, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, + ACTIONS(3866), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58323] = 7, - ACTIONS(3722), 1, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4010), 1, + [58422] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4143), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4233), 1, anon_sym_SEMI, - ACTIONS(4145), 1, - anon_sym_DASH_GT, - STATE(379), 1, - sym_block, - STATE(2017), 1, + STATE(429), 1, + sym_declaration_list, + STATE(1898), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58346] = 7, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - anon_sym_COMMA, - ACTIONS(4149), 1, - anon_sym_GT, - STATE(1963), 1, - sym_trait_bounds, - STATE(1982), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58369] = 7, - ACTIONS(3722), 1, + [58445] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4151), 1, + ACTIONS(4235), 1, anon_sym_SEMI, - ACTIONS(4153), 1, - anon_sym_DASH_GT, - STATE(388), 1, + STATE(408), 1, sym_block, - STATE(1949), 1, + STATE(2087), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58392] = 7, - ACTIONS(3722), 1, + [58468] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(3744), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - STATE(386), 1, - sym_field_declaration_list, - STATE(1857), 1, - sym_type_parameters, - STATE(2240), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4237), 1, + anon_sym_SEMI, + STATE(1020), 1, + sym_block, + STATE(1949), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58415] = 4, - ACTIONS(4155), 1, + [58491] = 4, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4243), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2544), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [58432] = 7, - ACTIONS(3446), 1, - anon_sym_EQ, - ACTIONS(3448), 1, + ACTIONS(4239), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3450), 1, - anon_sym_GT, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(1992), 1, - aux_sym_type_parameters_repeat1, - STATE(1994), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58455] = 5, - ACTIONS(4076), 1, + [58507] = 5, + ACTIONS(3652), 1, anon_sym_COLON, - ACTIONS(4155), 1, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3656), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4074), 2, + [58525] = 5, + ACTIONS(798), 1, anon_sym_RPAREN, + ACTIONS(4245), 1, anon_sym_COMMA, - [58474] = 4, + STATE(2053), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3594), 2, + ACTIONS(3433), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4112), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58491] = 2, + [58543] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4157), 5, + ACTIONS(4247), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58503] = 6, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(4084), 1, - anon_sym_COMMA, - ACTIONS(4086), 1, - anon_sym_GT, - STATE(1963), 1, - sym_trait_bounds, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58523] = 4, - ACTIONS(4161), 1, - anon_sym_as, - ACTIONS(4163), 1, - anon_sym_COLON_COLON, + [58555] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 3, + ACTIONS(4249), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [58539] = 4, - ACTIONS(4161), 1, - anon_sym_as, - ACTIONS(4165), 1, - anon_sym_COLON_COLON, + [58567] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 3, + ACTIONS(4251), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [58555] = 5, - ACTIONS(3560), 1, - anon_sym_COLON, - ACTIONS(3562), 1, - anon_sym_BANG, - ACTIONS(3564), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58573] = 5, - ACTIONS(4167), 1, - anon_sym_RPAREN, - ACTIONS(4169), 1, - anon_sym_COMMA, - STATE(1903), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3343), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58591] = 4, - ACTIONS(4161), 1, - anon_sym_as, - ACTIONS(4171), 1, - anon_sym_COLON_COLON, + [58579] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 3, + ACTIONS(4253), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [58607] = 2, + [58591] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4173), 5, + ACTIONS(4255), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58619] = 4, - ACTIONS(4177), 1, - anon_sym_as, - ACTIONS(4179), 1, - anon_sym_COLON_COLON, + [58603] = 4, + ACTIONS(4257), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4175), 3, + ACTIONS(2980), 2, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_PLUS, + ACTIONS(3608), 2, anon_sym_COMMA, - [58635] = 2, + anon_sym_PIPE, + [58619] = 4, + ACTIONS(586), 1, + anon_sym_LBRACE, + ACTIONS(4260), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4181), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [58647] = 2, + STATE(233), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [58635] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2829), 5, + ACTIONS(2834), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58659] = 2, + [58647] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2821), 5, + ACTIONS(2814), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58671] = 4, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(4183), 1, - anon_sym_if, + [58659] = 4, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(226), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [58687] = 6, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3363), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4262), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58675] = 5, + ACTIONS(4264), 1, + anon_sym_RPAREN, + ACTIONS(4267), 1, + anon_sym_COMMA, + STATE(2001), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3433), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58693] = 6, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - ACTIONS(3444), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3528), 1, anon_sym_COLON, - STATE(1343), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1926), 1, + STATE(2007), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58707] = 2, + [58713] = 5, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(2038), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4270), 2, + anon_sym_COMMA, + anon_sym_GT, + [58731] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4185), 5, + ACTIONS(4272), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58719] = 6, - ACTIONS(4187), 1, - anon_sym_RPAREN, - ACTIONS(4189), 1, - anon_sym_COLON, - ACTIONS(4191), 1, - anon_sym_COMMA, - ACTIONS(4193), 1, - anon_sym_PIPE, - STATE(1975), 1, - aux_sym_tuple_pattern_repeat1, + [58743] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58739] = 2, + ACTIONS(3045), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58755] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4195), 5, + ACTIONS(3012), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, + [58767] = 6, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(4161), 1, anon_sym_COMMA, - [58751] = 4, - ACTIONS(4197), 1, - anon_sym_RBRACK, + ACTIONS(4163), 1, + anon_sym_GT, + STATE(2045), 1, + aux_sym_type_parameters_repeat1, + STATE(2049), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58787] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2865), 2, + ACTIONS(4274), 5, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3566), 2, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - [58767] = 2, + [58799] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3862), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(4276), 5, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - [58779] = 5, - ACTIONS(3560), 1, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58811] = 5, + ACTIONS(3652), 1, anon_sym_COLON, - ACTIONS(3562), 1, + ACTIONS(3654), 1, anon_sym_BANG, - ACTIONS(3636), 1, + ACTIONS(3682), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58797] = 5, - ACTIONS(794), 1, - anon_sym_RPAREN, - ACTIONS(4200), 1, - anon_sym_COMMA, - STATE(2084), 1, - aux_sym_parameters_repeat1, + [58829] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58815] = 5, - ACTIONS(4202), 1, + ACTIONS(4278), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58841] = 5, + ACTIONS(4280), 1, anon_sym_RPAREN, - ACTIONS(4205), 1, + ACTIONS(4282), 1, anon_sym_COMMA, - STATE(1903), 1, + STATE(2001), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(3433), 2, anon_sym_COLON, anon_sym_PIPE, - [58833] = 3, + [58859] = 6, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(1364), 1, + sym_type_arguments, + STATE(1384), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58879] = 3, + ACTIONS(4284), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2660), 4, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_COLON_COLON, + [58893] = 4, + ACTIONS(2980), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3566), 2, + ACTIONS(3608), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2865), 3, + ACTIONS(4257), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [58847] = 4, - ACTIONS(4155), 1, + [58909] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4286), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1091), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [58925] = 4, + ACTIONS(4067), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4062), 2, + ACTIONS(4262), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58863] = 4, - ACTIONS(4072), 1, + [58941] = 4, + ACTIONS(4167), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4062), 2, + ACTIONS(4123), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58879] = 5, - ACTIONS(792), 1, + [58957] = 6, + ACTIONS(4288), 1, anon_sym_RPAREN, - ACTIONS(4208), 1, - anon_sym_COMMA, - STATE(2028), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(4290), 1, anon_sym_COLON, + ACTIONS(4292), 1, + anon_sym_COMMA, + ACTIONS(4294), 1, anon_sym_PIPE, - [58897] = 6, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3363), 1, - anon_sym_COLON_COLON, - STATE(1343), 1, - sym_type_arguments, - STATE(1365), 1, - sym_parameters, + STATE(1970), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58917] = 2, + [58977] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2793), 5, + ACTIONS(2862), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58929] = 2, + [58989] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2875), 5, + ACTIONS(2858), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58941] = 4, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4210), 2, + [59001] = 5, + ACTIONS(792), 1, anon_sym_RPAREN, + ACTIONS(4296), 1, anon_sym_COMMA, - [58957] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2762), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58969] = 2, + STATE(1972), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2809), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3433), 2, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58981] = 2, + anon_sym_PIPE, + [59019] = 4, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4212), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4123), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [58993] = 2, + [59035] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4214), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3608), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2980), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [59005] = 2, + [59049] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4216), 5, + ACTIONS(4298), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59017] = 2, + [59061] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4218), 5, + ACTIONS(4300), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59029] = 2, + [59073] = 4, + ACTIONS(4304), 1, + anon_sym_as, + ACTIONS(4306), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4220), 5, + ACTIONS(4302), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [59041] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4222), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1122), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [59057] = 5, - ACTIONS(4224), 1, + [59089] = 5, + ACTIONS(4308), 1, anon_sym_RPAREN, - ACTIONS(4226), 1, + ACTIONS(4310), 1, anon_sym_COMMA, - STATE(2119), 1, + STATE(2144), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(3433), 2, anon_sym_COLON, anon_sym_PIPE, - [59075] = 6, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(4228), 1, - anon_sym_COMMA, - ACTIONS(4230), 1, - anon_sym_GT, - STATE(1963), 1, - sym_trait_bounds, - STATE(2073), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59095] = 3, - ACTIONS(4232), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 4, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [59109] = 4, - ACTIONS(2865), 1, - anon_sym_PLUS, + [59107] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3566), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4197), 2, + ACTIONS(3893), 5, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - [59125] = 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [59119] = 4, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4312), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4234), 5, + ACTIONS(4239), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [59137] = 2, + [59135] = 6, + ACTIONS(2566), 1, + anon_sym_LPAREN, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(962), 1, + sym_parameters, + STATE(1364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4236), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59149] = 5, - ACTIONS(3446), 1, - anon_sym_EQ, - ACTIONS(3810), 1, + [59155] = 6, + ACTIONS(3924), 1, anon_sym_COLON, - STATE(1994), 1, + ACTIONS(4314), 1, + anon_sym_COMMA, + ACTIONS(4316), 1, + anon_sym_GT, + STATE(2049), 1, sym_trait_bounds, + STATE(2088), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4238), 2, - anon_sym_COMMA, - anon_sym_GT, - [59167] = 4, - ACTIONS(4155), 1, + [59175] = 4, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4318), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4210), 2, - anon_sym_RPAREN, + ACTIONS(4239), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [59183] = 6, - ACTIONS(2484), 1, - anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3363), 1, - anon_sym_COLON_COLON, - STATE(990), 1, - sym_parameters, - STATE(1343), 1, - sym_type_arguments, + [59191] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59203] = 2, + STATE(112), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59207] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4240), 5, + ACTIONS(4322), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59215] = 2, + [59219] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4242), 5, + ACTIONS(4324), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59227] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4244), 1, - anon_sym_if, + [59231] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(73), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, + ACTIONS(4326), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, [59243] = 5, - ACTIONS(3237), 1, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4075), 1, anon_sym_LBRACE, - ACTIONS(4246), 1, - sym_identifier, - ACTIONS(4248), 1, - anon_sym_STAR, - STATE(2080), 1, - sym_use_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59260] = 5, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LT, - STATE(1676), 1, - sym_parameters, - STATE(2151), 1, - sym_type_parameters, + STATE(1014), 1, + sym_enum_variant_list, + STATE(2192), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59277] = 4, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(1963), 1, - sym_trait_bounds, + [59260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4250), 2, + ACTIONS(3433), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4328), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [59292] = 4, - ACTIONS(3), 1, + [59273] = 5, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4245), 1, + anon_sym_COMMA, + STATE(2053), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1004), 1, sym_line_comment, - ACTIONS(4253), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4255), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59307] = 4, - ACTIONS(3562), 1, - anon_sym_BANG, - ACTIONS(3564), 1, - anon_sym_COLON_COLON, + [59290] = 4, + ACTIONS(4332), 1, + anon_sym_COMMA, + STATE(1781), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59322] = 4, - ACTIONS(4257), 1, - anon_sym_DQUOTE, - STATE(1784), 1, - aux_sym_string_literal_repeat1, + ACTIONS(4330), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [59305] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4259), 2, - sym__string_content, - sym_escape_sequence, - [59337] = 4, - ACTIONS(3562), 1, - anon_sym_BANG, - ACTIONS(3686), 1, + ACTIONS(3433), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4335), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59318] = 4, + ACTIONS(3522), 1, anon_sym_COLON_COLON, + ACTIONS(3932), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59352] = 5, - ACTIONS(4261), 1, - anon_sym_LPAREN, - ACTIONS(4263), 1, - anon_sym_LBRACE, - ACTIONS(4265), 1, - anon_sym_LBRACK, - STATE(96), 1, - sym_token_tree, + [59333] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4337), 1, + anon_sym_RPAREN, + ACTIONS(4339), 1, + anon_sym_COMMA, + STATE(1920), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59369] = 5, - ACTIONS(3359), 1, + [59350] = 5, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3804), 1, anon_sym_LT, - STATE(1700), 1, + STATE(1697), 1, sym_parameters, - STATE(2262), 1, + STATE(2269), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59386] = 5, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LT, - STATE(1681), 1, - sym_parameters, - STATE(2239), 1, - sym_type_parameters, - ACTIONS(3), 2, + [59367] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1000), 1, sym_line_comment, - [59403] = 5, - ACTIONS(3983), 1, + ACTIONS(4341), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4343), 3, anon_sym_PLUS, - ACTIONS(4267), 1, - anon_sym_RPAREN, - ACTIONS(4269), 1, - anon_sym_COMMA, - STATE(2033), 1, - aux_sym_ordered_field_declaration_list_repeat1, + anon_sym_STAR, + anon_sym_QMARK, + [59382] = 5, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_where, + STATE(461), 1, + sym_field_declaration_list, + STATE(2235), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59420] = 3, + [59399] = 5, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(1720), 1, + sym_parameters, + STATE(2232), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4271), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59433] = 4, + [59416] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1004), 1, + ACTIONS(1000), 1, sym_line_comment, - ACTIONS(4273), 1, + ACTIONS(4345), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4275), 3, + ACTIONS(4347), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59448] = 4, - ACTIONS(3), 1, + [59431] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(283), 1, + sym_declaration_list, + STATE(2151), 1, + sym_where_clause, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1004), 1, sym_line_comment, - ACTIONS(4277), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4279), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59463] = 5, - ACTIONS(3722), 1, + [59448] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(283), 1, + STATE(346), 1, sym_declaration_list, - STATE(2179), 1, + STATE(2313), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59480] = 5, - ACTIONS(3359), 1, + [59465] = 5, + ACTIONS(4349), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LT, - STATE(1659), 1, - sym_parameters, - STATE(2253), 1, - sym_type_parameters, + ACTIONS(4351), 1, + anon_sym_LBRACE, + ACTIONS(4353), 1, + anon_sym_LBRACK, + STATE(1945), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59497] = 5, - ACTIONS(4193), 1, + [59482] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(920), 1, + sym_field_declaration_list, + STATE(2152), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59499] = 5, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(4355), 1, + anon_sym_SEMI, + ACTIONS(4357), 1, + anon_sym_EQ, + STATE(2565), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59516] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(928), 1, + sym_declaration_list, + STATE(2166), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59533] = 5, + ACTIONS(3724), 1, anon_sym_PIPE, - ACTIONS(4281), 1, + ACTIONS(4359), 1, anon_sym_SEMI, - ACTIONS(4283), 1, + ACTIONS(4361), 1, anon_sym_COLON, - ACTIONS(4285), 1, + ACTIONS(4363), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59514] = 3, - ACTIONS(4287), 1, - anon_sym_in, + [59550] = 5, + ACTIONS(2566), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(960), 1, + sym_parameters, + STATE(1358), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4289), 3, - sym_self, - sym_super, - sym_crate, - [59527] = 3, - ACTIONS(4291), 1, - anon_sym_in, + [59567] = 5, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(4365), 1, + anon_sym_SEMI, + ACTIONS(4367), 1, + anon_sym_EQ, + STATE(2393), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4293), 3, - sym_self, - sym_super, - sym_crate, - [59540] = 5, - ACTIONS(3983), 1, + [59584] = 5, + ACTIONS(4314), 1, + anon_sym_COMMA, + ACTIONS(4316), 1, + anon_sym_GT, + ACTIONS(4369), 1, + anon_sym_EQ, + STATE(2088), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59601] = 5, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4295), 1, + ACTIONS(4371), 1, anon_sym_RPAREN, - ACTIONS(4297), 1, + ACTIONS(4373), 1, anon_sym_COMMA, - STATE(1889), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2084), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59557] = 5, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LT, - STATE(1629), 1, - sym_parameters, - STATE(2288), 1, - sym_type_parameters, + [59618] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(998), 1, + sym_declaration_list, + STATE(2246), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59574] = 4, - ACTIONS(3460), 1, + [59635] = 4, + ACTIONS(3522), 1, anon_sym_COLON_COLON, - ACTIONS(3560), 1, + ACTIONS(3652), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59589] = 4, - ACTIONS(3460), 1, + [59650] = 4, + ACTIONS(4065), 1, + anon_sym_COLON, + ACTIONS(4127), 1, anon_sym_COLON_COLON, - ACTIONS(3878), 1, - anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59604] = 4, - ACTIONS(4066), 1, - anon_sym_COLON_COLON, - ACTIONS(4076), 1, - anon_sym_COLON, + [59665] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4375), 1, + anon_sym_RPAREN, + ACTIONS(4377), 1, + anon_sym_COMMA, + STATE(2002), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59619] = 5, - ACTIONS(4189), 1, - anon_sym_COLON, - ACTIONS(4299), 1, - anon_sym_COMMA, - ACTIONS(4301), 1, - anon_sym_PIPE, - STATE(1922), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, + [59682] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1000), 1, sym_line_comment, - [59636] = 4, - ACTIONS(4303), 1, - anon_sym_DQUOTE, - STATE(1852), 1, - aux_sym_string_literal_repeat1, + ACTIONS(4379), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4381), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59697] = 5, + ACTIONS(2453), 1, + anon_sym_PLUS, + ACTIONS(4383), 1, + anon_sym_COMMA, + ACTIONS(4385), 1, + anon_sym_GT, + STATE(1946), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 2, - sym__string_content, - sym_escape_sequence, - [59651] = 5, - ACTIONS(4261), 1, - anon_sym_LPAREN, - ACTIONS(4263), 1, - anon_sym_LBRACE, - ACTIONS(4265), 1, - anon_sym_LBRACK, - STATE(148), 1, - sym_token_tree, + [59714] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4383), 1, + anon_sym_COMMA, + ACTIONS(4385), 1, + anon_sym_GT, + STATE(1946), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59668] = 5, - ACTIONS(4307), 1, - anon_sym_LPAREN, - ACTIONS(4309), 1, - anon_sym_LBRACE, - ACTIONS(4311), 1, - anon_sym_LBRACK, - STATE(833), 1, - sym_token_tree, + [59731] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4308), 1, + anon_sym_RPAREN, + ACTIONS(4310), 1, + anon_sym_COMMA, + STATE(2144), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59685] = 5, - ACTIONS(4307), 1, + [59748] = 5, + ACTIONS(4387), 1, anon_sym_LPAREN, - ACTIONS(4309), 1, + ACTIONS(4389), 1, anon_sym_LBRACE, - ACTIONS(4311), 1, + ACTIONS(4391), 1, anon_sym_LBRACK, - STATE(834), 1, - sym_token_tree, + STATE(1061), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59702] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4046), 1, - anon_sym_LBRACE, - STATE(306), 1, - sym_enum_variant_list, - STATE(2135), 1, - sym_where_clause, + [59765] = 5, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(1663), 1, + sym_parameters, + STATE(2308), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59719] = 5, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(4313), 1, + [59782] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4393), 1, anon_sym_RPAREN, - ACTIONS(4315), 1, + ACTIONS(4395), 1, anon_sym_COMMA, - STATE(1904), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59736] = 5, - ACTIONS(4317), 1, - anon_sym_LPAREN, - ACTIONS(4319), 1, - anon_sym_LBRACE, - ACTIONS(4321), 1, - anon_sym_LBRACK, - STATE(1385), 1, - sym_token_tree, + STATE(1885), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59753] = 4, - ACTIONS(4323), 1, + [59799] = 4, + ACTIONS(4397), 1, anon_sym_DQUOTE, - STATE(1852), 1, + STATE(1849), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 2, + ACTIONS(4399), 2, sym__string_content, sym_escape_sequence, - [59768] = 5, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(4325), 1, - anon_sym_RBRACK, - ACTIONS(4327), 1, + [59814] = 5, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4296), 1, anon_sym_COMMA, - STATE(2060), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1972), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59785] = 5, - ACTIONS(4317), 1, - anon_sym_LPAREN, - ACTIONS(4319), 1, + [59831] = 5, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(4321), 1, - anon_sym_LBRACK, - STATE(1378), 1, - sym_token_tree, + ACTIONS(4401), 1, + sym_identifier, + ACTIONS(4403), 1, + anon_sym_STAR, + STATE(2107), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59802] = 4, - ACTIONS(4329), 1, - anon_sym_DQUOTE, - STATE(1791), 1, - aux_sym_string_literal_repeat1, + [59848] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4405), 1, + anon_sym_RPAREN, + ACTIONS(4407), 1, + anon_sym_COMMA, + STATE(2112), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4331), 2, - sym__string_content, - sym_escape_sequence, - [59817] = 3, + [59865] = 5, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4409), 1, + anon_sym_SEMI, + ACTIONS(4411), 1, + anon_sym_COLON, + ACTIONS(4413), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 2, + [59882] = 5, + ACTIONS(4290), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4333), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59830] = 4, - ACTIONS(4337), 1, + ACTIONS(4415), 1, anon_sym_COMMA, - STATE(1796), 1, - aux_sym_where_clause_repeat1, + ACTIONS(4417), 1, + anon_sym_PIPE, + STATE(1931), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4335), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [59845] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(1015), 1, - sym_declaration_list, - STATE(2225), 1, - sym_where_clause, + [59899] = 4, + ACTIONS(4419), 1, + anon_sym_DQUOTE, + STATE(1849), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59862] = 5, - ACTIONS(2405), 1, + ACTIONS(4399), 2, + sym__string_content, + sym_escape_sequence, + [59914] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1000), 1, + sym_line_comment, + ACTIONS(4421), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4423), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59929] = 5, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4340), 1, + ACTIONS(4425), 1, anon_sym_COMMA, - ACTIONS(4342), 1, + ACTIONS(4427), 1, anon_sym_GT, - STATE(1966), 1, + STATE(2113), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59879] = 5, - ACTIONS(3983), 1, + [59946] = 5, + ACTIONS(4288), 1, + anon_sym_RPAREN, + ACTIONS(4292), 1, + anon_sym_COMMA, + ACTIONS(4294), 1, + anon_sym_PIPE, + STATE(1970), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59963] = 5, + ACTIONS(4429), 1, + anon_sym_LPAREN, + ACTIONS(4431), 1, + anon_sym_LBRACE, + ACTIONS(4433), 1, + anon_sym_LBRACK, + STATE(176), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59980] = 5, + ACTIONS(2453), 1, anon_sym_PLUS, - ACTIONS(4340), 1, + ACTIONS(4425), 1, anon_sym_COMMA, - ACTIONS(4342), 1, + ACTIONS(4427), 1, anon_sym_GT, - STATE(1966), 1, + STATE(2113), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59896] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3738), 1, + [59997] = 5, + ACTIONS(3273), 1, anon_sym_LBRACE, - STATE(468), 1, - sym_declaration_list, - STATE(2218), 1, - sym_where_clause, + ACTIONS(4205), 1, + sym_identifier, + ACTIONS(4207), 1, + anon_sym_STAR, + STATE(2116), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59913] = 4, - ACTIONS(3), 1, + [60014] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1004), 1, sym_line_comment, - ACTIONS(4344), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4346), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59928] = 5, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4348), 1, + ACTIONS(4330), 3, anon_sym_RPAREN, - ACTIONS(4350), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(2026), 1, - aux_sym_tuple_type_repeat1, + [60027] = 5, + ACTIONS(3724), 1, + anon_sym_PIPE, + ACTIONS(4435), 1, + anon_sym_SEMI, + ACTIONS(4437), 1, + anon_sym_COLON, + ACTIONS(4439), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59945] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, + [60044] = 3, + ACTIONS(4441), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4443), 3, + sym_self, + sym_super, + sym_crate, + [60057] = 5, + ACTIONS(4387), 1, + anon_sym_LPAREN, + ACTIONS(4389), 1, anon_sym_LBRACE, - STATE(900), 1, - sym_declaration_list, - STATE(2206), 1, - sym_where_clause, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(1134), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59962] = 5, - ACTIONS(3722), 1, + [60074] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(864), 1, + STATE(936), 1, sym_declaration_list, - STATE(2201), 1, + STATE(2224), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59979] = 5, - ACTIONS(3722), 1, + [60091] = 4, + ACTIONS(4447), 1, + anon_sym_COMMA, + STATE(1830), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4445), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [60106] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(318), 1, + STATE(422), 1, sym_declaration_list, - STATE(2272), 1, + STATE(2263), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59996] = 5, - ACTIONS(4084), 1, - anon_sym_COMMA, - ACTIONS(4086), 1, - anon_sym_GT, - ACTIONS(4352), 1, - anon_sym_EQ, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, + [60123] = 4, + ACTIONS(4450), 1, + anon_sym_DQUOTE, + STATE(1812), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60013] = 5, - ACTIONS(794), 1, - anon_sym_RPAREN, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4200), 1, + ACTIONS(4452), 2, + sym__string_content, + sym_escape_sequence, + [60138] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4171), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_enum_variant_list, + STATE(2238), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60155] = 5, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4454), 1, + anon_sym_RBRACK, + ACTIONS(4456), 1, anon_sym_COMMA, - STATE(2084), 1, - aux_sym_parameters_repeat1, + STATE(1960), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60030] = 5, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [60172] = 5, + ACTIONS(3425), 1, anon_sym_LPAREN, - STATE(1346), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(1358), 1, sym_type_arguments, - STATE(1360), 1, + STATE(1390), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60047] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [60189] = 4, + ACTIONS(4458), 1, + anon_sym_DQUOTE, + STATE(1860), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4354), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60060] = 5, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3722), 1, - anon_sym_where, - STATE(780), 1, - sym_field_declaration_list, - STATE(2173), 1, - sym_where_clause, + ACTIONS(4460), 2, + sym__string_content, + sym_escape_sequence, + [60204] = 4, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3682), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60077] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60219] = 4, + ACTIONS(4462), 1, + anon_sym_DQUOTE, + STATE(1818), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4464), 2, + sym__string_content, + sym_escape_sequence, + [60234] = 5, + ACTIONS(4466), 1, + anon_sym_LPAREN, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4470), 1, + anon_sym_LBRACK, + STATE(1404), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4356), 3, + [60251] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, anon_sym_RPAREN, + ACTIONS(4282), 1, anon_sym_COMMA, - anon_sym_PIPE, - [60090] = 5, - ACTIONS(3722), 1, + STATE(2001), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60268] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(410), 1, + STATE(459), 1, sym_declaration_list, - STATE(2210), 1, + STATE(2195), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60107] = 5, - ACTIONS(4187), 1, + [60285] = 4, + ACTIONS(4472), 1, + anon_sym_COMMA, + STATE(1830), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2930), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [60300] = 5, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4474), 1, anon_sym_RPAREN, - ACTIONS(4191), 1, + ACTIONS(4476), 1, anon_sym_COMMA, - ACTIONS(4193), 1, - anon_sym_PIPE, - STATE(1975), 1, + STATE(1959), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60124] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3987), 1, - anon_sym_LBRACE, - STATE(791), 1, - sym_enum_variant_list, - STATE(2168), 1, - sym_where_clause, + [60317] = 4, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + ACTIONS(4478), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60141] = 5, - ACTIONS(3722), 1, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60332] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(801), 1, + STATE(437), 1, sym_declaration_list, - STATE(2160), 1, + STATE(2260), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60158] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(821), 1, - sym_declaration_list, - STATE(2155), 1, - sym_where_clause, + [60349] = 4, + ACTIONS(4125), 1, + anon_sym_COLON, + ACTIONS(4127), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60175] = 4, - ACTIONS(3562), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60364] = 4, + ACTIONS(3654), 1, anon_sym_BANG, - ACTIONS(3636), 1, + ACTIONS(3656), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60190] = 5, - ACTIONS(3642), 1, - anon_sym_PIPE, - ACTIONS(4358), 1, - anon_sym_SEMI, - ACTIONS(4360), 1, + [60379] = 3, + ACTIONS(4480), 1, anon_sym_COLON, - ACTIONS(4362), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60207] = 5, - ACTIONS(2405), 1, - anon_sym_PLUS, - ACTIONS(4364), 1, + ACTIONS(3724), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4366), 1, - anon_sym_GT, - STATE(2113), 1, - aux_sym_type_arguments_repeat1, + anon_sym_PIPE, + [60392] = 4, + ACTIONS(4482), 1, + anon_sym_DQUOTE, + STATE(1849), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60224] = 5, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4364), 1, - anon_sym_COMMA, - ACTIONS(4366), 1, - anon_sym_GT, - STATE(2113), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4484), 2, + sym__string_content, + sym_escape_sequence, + [60407] = 4, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3750), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60241] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60422] = 5, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(367), 1, - sym_declaration_list, - STATE(2287), 1, + ACTIONS(3802), 1, + anon_sym_where, + STATE(332), 1, + sym_field_declaration_list, + STATE(2309), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60258] = 5, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4224), 1, - anon_sym_RPAREN, - ACTIONS(4226), 1, - anon_sym_COMMA, - STATE(2119), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60275] = 5, - ACTIONS(3722), 1, + [60439] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(356), 1, + STATE(898), 1, sym_declaration_list, - STATE(2153), 1, + STATE(2219), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60292] = 5, + [60456] = 5, + ACTIONS(3802), 1, + anon_sym_where, ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(4368), 1, - anon_sym_SEMI, - ACTIONS(4370), 1, - anon_sym_EQ, - STATE(2482), 1, - sym_trait_bounds, + anon_sym_LBRACE, + STATE(809), 1, + sym_declaration_list, + STATE(2170), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60309] = 5, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3722), 1, - anon_sym_where, - STATE(951), 1, - sym_field_declaration_list, - STATE(2158), 1, - sym_where_clause, + [60473] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60326] = 5, - ACTIONS(3810), 1, + ACTIONS(4487), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60486] = 5, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4374), 1, - anon_sym_EQ, - STATE(2511), 1, + STATE(1358), 1, + sym_type_arguments, + STATE(2017), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60343] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(962), 1, - sym_declaration_list, - STATE(2166), 1, - sym_where_clause, + [60503] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60360] = 5, - ACTIONS(3642), 1, + ACTIONS(4489), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(4376), 1, - anon_sym_SEMI, - ACTIONS(4378), 1, - anon_sym_COLON, - ACTIONS(4380), 1, - anon_sym_EQ, + [60516] = 4, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(4491), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60377] = 5, - ACTIONS(2484), 1, + STATE(1140), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [60531] = 5, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, - anon_sym_LT2, - STATE(987), 1, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(1704), 1, sym_parameters, - STATE(1346), 1, - sym_type_arguments, + STATE(2296), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60548] = 4, + ACTIONS(4495), 1, + anon_sym_COMMA, + STATE(1842), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4493), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [60563] = 4, + ACTIONS(4497), 1, + anon_sym_DQUOTE, + STATE(1849), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60394] = 5, - ACTIONS(4228), 1, + ACTIONS(4399), 2, + sym__string_content, + sym_escape_sequence, + [60578] = 3, + ACTIONS(4499), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4501), 3, + sym_self, + sym_super, + sym_crate, + [60591] = 5, + ACTIONS(4161), 1, anon_sym_COMMA, - ACTIONS(4230), 1, + ACTIONS(4163), 1, anon_sym_GT, - ACTIONS(4352), 1, + ACTIONS(4369), 1, anon_sym_EQ, - STATE(2073), 1, + STATE(2045), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60411] = 5, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4382), 1, - anon_sym_RPAREN, - ACTIONS(4384), 1, - anon_sym_COMMA, - STATE(2069), 1, - aux_sym_tuple_type_repeat1, + [60608] = 5, + ACTIONS(4466), 1, + anon_sym_LPAREN, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4470), 1, + anon_sym_LBRACK, + STATE(1413), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60428] = 5, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4167), 1, - anon_sym_RPAREN, - ACTIONS(4169), 1, - anon_sym_COMMA, - STATE(1903), 1, - aux_sym_parameters_repeat1, + [60625] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(790), 1, + sym_declaration_list, + STATE(2175), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60445] = 4, - ACTIONS(3810), 1, + [60642] = 4, + ACTIONS(3924), 1, anon_sym_COLON, - STATE(1963), 1, + STATE(2049), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4386), 2, + ACTIONS(4503), 2, anon_sym_COMMA, anon_sym_GT, - [60460] = 5, - ACTIONS(3722), 1, + [60657] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3987), 1, + ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(1014), 1, + STATE(472), 1, sym_enum_variant_list, - STATE(2211), 1, + STATE(2326), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60477] = 5, - ACTIONS(4388), 1, + [60674] = 5, + ACTIONS(4429), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4431), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(1092), 1, - sym_token_tree, + STATE(97), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60494] = 4, - ACTIONS(4394), 1, - anon_sym_DQUOTE, - STATE(1852), 1, - aux_sym_string_literal_repeat1, + [60691] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(258), 1, + sym_declaration_list, + STATE(2201), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 2, - sym__string_content, - sym_escape_sequence, - [60509] = 5, - ACTIONS(3237), 1, + [60708] = 5, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(1698), 1, + sym_parameters, + STATE(2272), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60725] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4075), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, - sym_identifier, - ACTIONS(4016), 1, - anon_sym_STAR, - STATE(2059), 1, - sym_use_list, + STATE(789), 1, + sym_enum_variant_list, + STATE(2183), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60526] = 5, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(4396), 1, - anon_sym_SEMI, - ACTIONS(4398), 1, + [60742] = 4, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(4400), 1, - anon_sym_EQ, + STATE(2049), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60543] = 4, - ACTIONS(4404), 1, + ACTIONS(4505), 2, anon_sym_COMMA, - STATE(1839), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_GT, + [60757] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(820), 1, + sym_field_declaration_list, + STATE(2188), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4402), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [60558] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [60774] = 5, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_SEMI, + ACTIONS(4510), 1, + anon_sym_COLON, + ACTIONS(4512), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4407), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60571] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [60791] = 5, + ACTIONS(4514), 1, + anon_sym_LPAREN, + ACTIONS(4516), 1, + anon_sym_LBRACE, + ACTIONS(4518), 1, + anon_sym_LBRACK, + STATE(844), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4409), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60584] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, + [60808] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4402), 3, + ACTIONS(4520), 3, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [60597] = 5, - ACTIONS(4388), 1, + anon_sym_PIPE, + [60821] = 5, + ACTIONS(4514), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4516), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4518), 1, anon_sym_LBRACK, - STATE(1071), 1, - sym_token_tree, + STATE(849), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60614] = 5, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4208), 1, - anon_sym_COMMA, - STATE(2028), 1, - aux_sym_parameters_repeat1, + [60838] = 5, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(1667), 1, + sym_parameters, + STATE(2254), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60631] = 4, - ACTIONS(4411), 1, + [60855] = 4, + ACTIONS(4522), 1, anon_sym_DQUOTE, - STATE(1836), 1, + STATE(1880), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4413), 2, + ACTIONS(4524), 2, sym__string_content, sym_escape_sequence, - [60646] = 4, - ACTIONS(3460), 1, - anon_sym_COLON_COLON, - ACTIONS(4415), 1, - anon_sym_COLON, + [60870] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60661] = 5, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4417), 1, + ACTIONS(4526), 3, anon_sym_RPAREN, - ACTIONS(4419), 1, anon_sym_COMMA, - STATE(1953), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60678] = 5, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(1346), 1, - sym_type_arguments, - STATE(1924), 1, - sym_trait_bounds, + anon_sym_PIPE, + [60883] = 4, + ACTIONS(4528), 1, + anon_sym_DQUOTE, + STATE(1849), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60695] = 4, - ACTIONS(4421), 1, + ACTIONS(4399), 2, + sym__string_content, + sym_escape_sequence, + [60898] = 4, + ACTIONS(4041), 1, + anon_sym_RBRACE, + ACTIONS(4530), 1, anon_sym_COMMA, - STATE(1796), 1, - aux_sym_where_clause_repeat1, + STATE(1980), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2833), 2, + [60912] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4532), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [60710] = 4, - ACTIONS(4064), 1, - anon_sym_COLON, - ACTIONS(4066), 1, - anon_sym_COLON_COLON, + ACTIONS(4534), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60725] = 3, - ACTIONS(4423), 1, + [60926] = 3, + ACTIONS(4538), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 3, - anon_sym_RPAREN, + ACTIONS(4536), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [60738] = 4, - ACTIONS(4425), 1, - anon_sym_DQUOTE, - STATE(1852), 1, - aux_sym_string_literal_repeat1, + [60938] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4540), 1, + anon_sym_SEMI, + ACTIONS(4542), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4427), 2, - sym__string_content, - sym_escape_sequence, - [60753] = 4, - ACTIONS(4432), 1, + [60952] = 4, + ACTIONS(4544), 1, + anon_sym_RPAREN, + ACTIONS(4546), 1, anon_sym_COMMA, - STATE(1849), 1, - aux_sym_where_clause_repeat1, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4430), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60768] = 4, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(4434), 1, + [60966] = 4, + ACTIONS(4548), 1, sym_identifier, + ACTIONS(4550), 1, + anon_sym_await, + ACTIONS(4552), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [60783] = 5, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LT, - STATE(1701), 1, - sym_parameters, - STATE(2243), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60800] = 5, - ACTIONS(4388), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, - anon_sym_LBRACE, - ACTIONS(4392), 1, - anon_sym_LBRACK, - STATE(2086), 1, - sym_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60817] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(344), 1, - sym_field_declaration_list, - STATE(2194), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60834] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(399), 1, - sym_field_declaration_list, - STATE(2142), 1, - sym_where_clause, + [60980] = 4, + ACTIONS(2574), 1, + anon_sym_LT2, + ACTIONS(4554), 1, + sym_identifier, + STATE(919), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60851] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4046), 1, - anon_sym_LBRACE, - STATE(374), 1, - sym_enum_variant_list, - STATE(2128), 1, - sym_where_clause, + [60994] = 4, + ACTIONS(4556), 1, + anon_sym_for, + ACTIONS(4558), 1, + anon_sym_loop, + ACTIONS(4560), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60868] = 4, - ACTIONS(3756), 1, + [61008] = 4, + ACTIONS(3836), 1, anon_sym_RBRACE, - ACTIONS(4436), 1, + ACTIONS(4562), 1, anon_sym_COMMA, - STATE(2068), 1, + STATE(2026), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60882] = 4, - ACTIONS(4004), 1, + [61022] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4438), 1, + ACTIONS(4564), 1, anon_sym_SEMI, - STATE(996), 1, + STATE(416), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60896] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4440), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60906] = 4, - ACTIONS(4442), 1, + [61036] = 4, + ACTIONS(3836), 1, anon_sym_RBRACE, - ACTIONS(4444), 1, + ACTIONS(4562), 1, anon_sym_COMMA, - STATE(1918), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2028), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60920] = 4, - ACTIONS(4446), 1, - sym_identifier, - ACTIONS(4448), 1, - anon_sym_ref, - ACTIONS(4450), 1, - sym_mutable_specifier, + [61050] = 3, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60934] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61062] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4566), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4452), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60946] = 4, - ACTIONS(4454), 1, - sym_identifier, - ACTIONS(4456), 1, - anon_sym_ref, - ACTIONS(4458), 1, - sym_mutable_specifier, + [61076] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4568), 1, + anon_sym_SEMI, + ACTIONS(4570), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60960] = 4, - ACTIONS(4460), 1, - sym_identifier, - ACTIONS(4462), 1, - anon_sym_ref, - ACTIONS(4464), 1, - sym_mutable_specifier, + [61090] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + STATE(1133), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60974] = 4, - ACTIONS(3983), 1, + [61104] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4466), 1, + ACTIONS(4572), 1, anon_sym_SEMI, - ACTIONS(4468), 1, + ACTIONS(4574), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60988] = 4, - ACTIONS(546), 1, - anon_sym_RBRACK, - ACTIONS(4470), 1, - anon_sym_COMMA, - STATE(1959), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61002] = 4, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4472), 1, + [61118] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, anon_sym_SEMI, - STATE(2462), 1, - sym_where_clause, + STATE(400), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61016] = 2, + [61132] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4578), 1, + anon_sym_SEMI, + STATE(282), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4474), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61026] = 4, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4476), 1, + [61146] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4580), 1, anon_sym_SEMI, - STATE(2538), 1, - sym_where_clause, + STATE(331), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61040] = 4, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(4478), 1, - anon_sym_EQ, - STATE(2512), 1, - sym_type_parameters, + [61160] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61054] = 2, + ACTIONS(4582), 2, + anon_sym_COMMA, + anon_sym_GT, + [61172] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4584), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4480), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61064] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4482), 1, - anon_sym_SEMI, - STATE(432), 1, - sym_block, + [61186] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4584), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61078] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4484), 1, - anon_sym_SEMI, - STATE(385), 1, - sym_block, + [61200] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61092] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4486), 1, + ACTIONS(4586), 3, anon_sym_SEMI, - ACTIONS(4488), 1, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + [61210] = 4, + ACTIONS(4503), 1, + anon_sym_GT, + ACTIONS(4588), 1, + anon_sym_COMMA, + STATE(1904), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61106] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4490), 1, - anon_sym_SEMI, - STATE(464), 1, - sym_block, + [61224] = 4, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(4591), 1, + anon_sym_EQ, + STATE(2417), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61120] = 4, - ACTIONS(4492), 1, - anon_sym_RPAREN, - ACTIONS(4494), 1, + [61238] = 4, + ACTIONS(4593), 1, + anon_sym_RBRACE, + ACTIONS(4595), 1, anon_sym_COMMA, - STATE(1879), 1, - aux_sym_meta_arguments_repeat1, + STATE(1906), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61134] = 2, + [61252] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4497), 3, + ACTIONS(4598), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [61144] = 4, - ACTIONS(3738), 1, + [61262] = 4, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4499), 1, + ACTIONS(4600), 1, anon_sym_SEMI, - STATE(462), 1, + STATE(263), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61158] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, - anon_sym_SEMI, - STATE(434), 1, - sym_declaration_list, + [61276] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61172] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4503), 1, - anon_sym_SEMI, - STATE(273), 1, - sym_block, + ACTIONS(4602), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61286] = 4, + ACTIONS(4604), 1, + anon_sym_RBRACE, + ACTIONS(4606), 1, + anon_sym_COMMA, + STATE(2024), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61186] = 3, - ACTIONS(4505), 1, + [61300] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4608), 1, sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4507), 2, - anon_sym_default, - anon_sym_union, - [61198] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [61314] = 4, + ACTIONS(3528), 1, + anon_sym_COLON, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, + STATE(2017), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4509), 2, - anon_sym_RBRACE, + [61328] = 4, + ACTIONS(4610), 1, + anon_sym_RPAREN, + ACTIONS(4612), 1, anon_sym_COMMA, - [61210] = 3, - ACTIONS(4040), 1, - anon_sym_COLON_COLON, + STATE(2039), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61222] = 2, + [61342] = 4, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(3961), 1, + anon_sym_BANG, + ACTIONS(4614), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4511), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61232] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - STATE(1111), 1, - sym_block, + [61356] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61246] = 4, - ACTIONS(4513), 1, + ACTIONS(4616), 3, anon_sym_RPAREN, - ACTIONS(4515), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1948), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [61366] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61260] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + ACTIONS(4618), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61376] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4566), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4517), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61272] = 4, - ACTIONS(4519), 1, - anon_sym_for, - ACTIONS(4521), 1, - anon_sym_loop, - ACTIONS(4523), 1, - anon_sym_while, + [61390] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4608), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61286] = 4, - ACTIONS(382), 1, - anon_sym_RPAREN, - ACTIONS(3141), 1, - anon_sym_COMMA, - STATE(2101), 1, - aux_sym_arguments_repeat1, + [61404] = 3, + ACTIONS(4369), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61300] = 3, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, + ACTIONS(4503), 2, + anon_sym_COMMA, + anon_sym_GT, + [61416] = 4, + ACTIONS(2524), 1, + anon_sym_RPAREN, + ACTIONS(4620), 1, + anon_sym_COMMA, + STATE(1936), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61312] = 4, - ACTIONS(4010), 1, + [61430] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4525), 1, - anon_sym_SEMI, - STATE(262), 1, + ACTIONS(4622), 1, + anon_sym_move, + STATE(1106), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61326] = 4, - ACTIONS(2548), 1, - anon_sym_LBRACE, - ACTIONS(4527), 1, + [61444] = 3, + ACTIONS(4127), 1, anon_sym_COLON_COLON, - STATE(1097), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61340] = 4, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(4529), 1, - anon_sym_EQ, - STATE(2502), 1, - sym_type_parameters, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61456] = 4, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, + ACTIONS(3528), 1, + anon_sym_COLON, + STATE(2017), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61354] = 4, - ACTIONS(4531), 1, + [61470] = 4, + ACTIONS(4624), 1, anon_sym_RBRACE, - ACTIONS(4533), 1, + ACTIONS(4626), 1, anon_sym_COMMA, - STATE(2035), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1924), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61368] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4535), 1, - anon_sym_move, - STATE(1115), 1, - sym_block, + [61484] = 4, + ACTIONS(4629), 1, + anon_sym_RBRACE, + ACTIONS(4631), 1, + anon_sym_COMMA, + STATE(2146), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61382] = 4, - ACTIONS(3738), 1, + [61498] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4537), 1, + ACTIONS(4633), 1, anon_sym_SEMI, - STATE(267), 1, - sym_declaration_list, + STATE(369), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61396] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [61512] = 4, + ACTIONS(4635), 1, + sym_identifier, + ACTIONS(4637), 1, + anon_sym_ref, + ACTIONS(4639), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4539), 2, - anon_sym_COMMA, - anon_sym_GT, - [61408] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, + [61526] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4541), 2, - anon_sym_RBRACE, + ACTIONS(4641), 2, anon_sym_COMMA, - [61420] = 3, - ACTIONS(3460), 1, + anon_sym_GT, + [61538] = 4, + ACTIONS(2638), 1, + anon_sym_LBRACE, + ACTIONS(4643), 1, anon_sym_COLON_COLON, + STATE(1131), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61432] = 4, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4208), 1, + [61552] = 4, + ACTIONS(4645), 1, anon_sym_COMMA, - STATE(2097), 1, - aux_sym_parameters_repeat1, + ACTIONS(4647), 1, + anon_sym_GT, + STATE(1996), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61446] = 4, - ACTIONS(2363), 1, - anon_sym_RPAREN, - ACTIONS(4543), 1, + [61566] = 4, + ACTIONS(4415), 1, anon_sym_COMMA, - STATE(1839), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4649), 1, + anon_sym_PIPE, + STATE(2133), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61460] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4545), 1, + [61580] = 4, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4651), 1, anon_sym_SEMI, - STATE(400), 1, - sym_block, + STATE(2526), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61474] = 4, - ACTIONS(3494), 1, + [61594] = 3, + ACTIONS(4167), 1, anon_sym_COLON_COLON, - ACTIONS(3870), 1, - anon_sym_BANG, - ACTIONS(4547), 1, - sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61488] = 3, - ACTIONS(3115), 1, - anon_sym_COLON_COLON, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61606] = 4, + ACTIONS(4653), 1, + anon_sym_for, + ACTIONS(4655), 1, + anon_sym_loop, + ACTIONS(4657), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4549), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61500] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [61620] = 4, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(4647), 1, + anon_sym_GT, + STATE(2205), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4271), 2, + [61634] = 4, + ACTIONS(4659), 1, anon_sym_RPAREN, + ACTIONS(4661), 1, anon_sym_COMMA, - [61512] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4551), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61524] = 3, - ACTIONS(4066), 1, - anon_sym_COLON_COLON, + STATE(1936), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61536] = 3, - ACTIONS(4553), 1, + [61648] = 4, + ACTIONS(2574), 1, + anon_sym_LT2, + ACTIONS(4554), 1, sym_identifier, + STATE(848), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4555), 2, - anon_sym_default, - anon_sym_union, - [61548] = 4, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, - ACTIONS(3444), 1, - anon_sym_COLON, - STATE(1924), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61562] = 4, - ACTIONS(3355), 1, + [61662] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3688), 1, - anon_sym_LBRACE, - STATE(1346), 1, + ACTIONS(4664), 1, + sym_identifier, + STATE(2338), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61576] = 4, - ACTIONS(3983), 1, + [61676] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4557), 1, - anon_sym_SEMI, - ACTIONS(4559), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61590] = 4, - ACTIONS(4561), 1, - anon_sym_RBRACE, - ACTIONS(4563), 1, + ACTIONS(4659), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_field_initializer_list_repeat1, + [61688] = 4, + ACTIONS(4280), 1, + anon_sym_RPAREN, + ACTIONS(4282), 1, + anon_sym_COMMA, + STATE(2001), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61604] = 3, - ACTIONS(4567), 1, - anon_sym_COLON, + [61702] = 4, + ACTIONS(2453), 1, + anon_sym_PLUS, + ACTIONS(4666), 1, + sym_mutable_specifier, + ACTIONS(4668), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4565), 2, - anon_sym_RBRACE, + [61716] = 4, + ACTIONS(3325), 1, + anon_sym_RPAREN, + ACTIONS(4670), 1, anon_sym_COMMA, - [61616] = 3, - ACTIONS(4571), 1, - anon_sym_EQ, + STATE(1942), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4569), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61628] = 4, - ACTIONS(3700), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, + [61730] = 4, + ACTIONS(388), 1, + anon_sym_RPAREN, + ACTIONS(4673), 1, anon_sym_COMMA, - STATE(2066), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1942), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61642] = 4, - ACTIONS(3700), 1, + [61744] = 4, + ACTIONS(4053), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4675), 1, anon_sym_COMMA, - STATE(2055), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61656] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4575), 1, - anon_sym_SEMI, - STATE(304), 1, - sym_declaration_list, + STATE(1980), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61670] = 3, - ACTIONS(4579), 1, - anon_sym_COLON, + [61758] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4577), 2, + ACTIONS(4677), 3, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, + [61768] = 4, + ACTIONS(922), 1, + anon_sym_GT, + ACTIONS(4679), 1, anon_sym_COMMA, - [61682] = 4, - ACTIONS(4299), 1, - anon_sym_COMMA, - ACTIONS(4581), 1, - anon_sym_PIPE, - STATE(1941), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61696] = 2, + STATE(1991), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4583), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61706] = 2, + [61782] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4664), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4585), 3, - anon_sym_SEMI, + [61796] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [61716] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4587), 1, - anon_sym_SEMI, - ACTIONS(4589), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61730] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4591), 3, + ACTIONS(4681), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [61740] = 4, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3444), 1, - anon_sym_COLON, - STATE(1924), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61754] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - STATE(1032), 1, + STATE(959), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61768] = 4, - ACTIONS(4010), 1, + [61810] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4593), 1, + ACTIONS(4683), 1, anon_sym_SEMI, - STATE(453), 1, + STATE(969), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61782] = 4, - ACTIONS(4010), 1, + [61824] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4595), 1, + ACTIONS(4685), 1, anon_sym_SEMI, - STATE(315), 1, + STATE(340), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61796] = 4, - ACTIONS(3075), 1, - anon_sym_RPAREN, - ACTIONS(4597), 1, - anon_sym_COMMA, - STATE(1879), 1, - aux_sym_meta_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61810] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4599), 1, - anon_sym_SEMI, - STATE(364), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61824] = 4, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(4601), 1, - anon_sym_EQ_GT, - ACTIONS(4603), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61838] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4605), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61848] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4607), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61858] = 4, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4208), 1, - anon_sym_COMMA, - STATE(2028), 1, - aux_sym_parameters_repeat1, + [61838] = 3, + ACTIONS(4217), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61872] = 4, - ACTIONS(610), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61850] = 4, + ACTIONS(586), 1, anon_sym_LBRACE, - ACTIONS(4609), 1, + ACTIONS(4687), 1, anon_sym_move, - STATE(240), 1, + STATE(225), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61886] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4611), 1, - anon_sym_SEMI, - STATE(469), 1, - sym_declaration_list, + [61864] = 3, + ACTIONS(4689), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61900] = 4, - ACTIONS(3738), 1, + ACTIONS(4691), 2, + anon_sym_default, + anon_sym_union, + [61876] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4613), 1, + ACTIONS(4693), 1, anon_sym_SEMI, - STATE(440), 1, - sym_declaration_list, + STATE(999), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61914] = 4, - ACTIONS(3728), 1, + [61890] = 4, + ACTIONS(4695), 1, anon_sym_RBRACE, - ACTIONS(4615), 1, + ACTIONS(4697), 1, anon_sym_COMMA, - STATE(1942), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1955), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61928] = 4, - ACTIONS(4617), 1, - anon_sym_COMMA, - ACTIONS(4620), 1, - anon_sym_PIPE, - STATE(1941), 1, - aux_sym_closure_parameters_repeat1, + [61904] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4700), 1, + anon_sym_SEMI, + ACTIONS(4702), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61942] = 4, - ACTIONS(4622), 1, + [61918] = 4, + ACTIONS(3850), 1, anon_sym_RBRACE, - ACTIONS(4624), 1, + ACTIONS(4704), 1, anon_sym_COMMA, - STATE(1942), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1955), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61956] = 4, - ACTIONS(4627), 1, - anon_sym_for, - ACTIONS(4629), 1, - anon_sym_loop, - ACTIONS(4631), 1, - anon_sym_while, + [61932] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61970] = 2, + ACTIONS(4445), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [61942] = 4, + ACTIONS(2443), 1, + anon_sym_RPAREN, + ACTIONS(4706), 1, + anon_sym_COMMA, + STATE(1781), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4633), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [61956] = 4, + ACTIONS(2445), 1, + anon_sym_RBRACK, + ACTIONS(4708), 1, anon_sym_COMMA, - [61980] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + STATE(1781), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4635), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61992] = 3, - ACTIONS(4189), 1, + [61970] = 3, + ACTIONS(4712), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4620), 2, + ACTIONS(4710), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [62004] = 4, - ACTIONS(3237), 1, - anon_sym_LBRACE, - ACTIONS(4637), 1, - sym_identifier, - STATE(1970), 1, - sym_use_list, + [61982] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62018] = 4, - ACTIONS(4639), 1, + ACTIONS(4328), 2, anon_sym_RPAREN, - ACTIONS(4641), 1, anon_sym_COMMA, - STATE(1948), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62032] = 4, - ACTIONS(4010), 1, + [61994] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, + ACTIONS(4714), 1, anon_sym_SEMI, - STATE(298), 1, + STATE(1041), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62046] = 3, - ACTIONS(3983), 1, + [62008] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, + ACTIONS(4716), 1, + anon_sym_SEMI, + ACTIONS(4718), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4646), 2, + [62022] = 4, + ACTIONS(4328), 1, anon_sym_RPAREN, + ACTIONS(4720), 1, anon_sym_COMMA, - [62058] = 3, - ACTIONS(4155), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62070] = 4, - ACTIONS(2548), 1, - anon_sym_LBRACE, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(1097), 1, - sym_field_initializer_list, + STATE(1965), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62084] = 4, - ACTIONS(4650), 1, - anon_sym_RPAREN, - ACTIONS(4652), 1, - anon_sym_COMMA, - STATE(1948), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62036] = 3, + ACTIONS(4723), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62098] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4654), 1, + ACTIONS(4725), 2, + anon_sym_default, + anon_sym_union, + [62048] = 4, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4727), 1, anon_sym_SEMI, - ACTIONS(4656), 1, - anon_sym_EQ, + STATE(1038), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62112] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4658), 1, - anon_sym_as, - ACTIONS(4660), 1, - anon_sym_GT, + [62062] = 3, + ACTIONS(3195), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62126] = 4, - ACTIONS(3738), 1, + ACTIONS(4262), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62074] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4662), 1, + ACTIONS(4729), 1, anon_sym_SEMI, - STATE(419), 1, + STATE(1034), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62140] = 4, - ACTIONS(3740), 1, - anon_sym_RBRACE, - ACTIONS(4664), 1, + [62088] = 4, + ACTIONS(2449), 1, + anon_sym_RPAREN, + ACTIONS(4731), 1, anon_sym_COMMA, - STATE(2123), 1, - aux_sym_field_initializer_list_repeat1, + STATE(1781), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62154] = 4, - ACTIONS(4299), 1, - anon_sym_COMMA, - ACTIONS(4666), 1, - anon_sym_PIPE, - STATE(1922), 1, - aux_sym_closure_parameters_repeat1, + [62102] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4733), 1, + anon_sym_SEMI, + STATE(432), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62168] = 4, - ACTIONS(3229), 1, - anon_sym_RBRACK, - ACTIONS(4668), 1, + [62116] = 4, + ACTIONS(796), 1, + anon_sym_RPAREN, + ACTIONS(4735), 1, anon_sym_COMMA, - STATE(1959), 1, - aux_sym_array_expression_repeat1, + STATE(1965), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62130] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(4737), 1, + anon_sym_SEMI, + STATE(1031), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62182] = 4, - ACTIONS(3355), 1, + [62144] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4671), 1, - sym_identifier, - STATE(2443), 1, + ACTIONS(3762), 1, + anon_sym_LBRACE, + STATE(1358), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62196] = 4, - ACTIONS(3750), 1, + [62158] = 3, + ACTIONS(4741), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4739), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62170] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4673), 1, + ACTIONS(4743), 1, anon_sym_SEMI, - STATE(914), 1, + STATE(871), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62210] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4671), 1, - sym_identifier, - STATE(2311), 1, - sym_type_arguments, + [62184] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62224] = 2, + ACTIONS(4745), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [62194] = 3, + ACTIONS(4749), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4675), 3, - anon_sym_EQ, + ACTIONS(4747), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [62234] = 3, - ACTIONS(4679), 1, - anon_sym_COLON, + [62206] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4677), 2, + ACTIONS(4751), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62246] = 4, - ACTIONS(3929), 1, + [62218] = 4, + ACTIONS(4753), 1, anon_sym_RBRACE, - ACTIONS(4681), 1, + ACTIONS(4755), 1, anon_sym_COMMA, - STATE(2015), 1, + STATE(1980), 1, aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62260] = 4, - ACTIONS(916), 1, - anon_sym_GT, - ACTIONS(4683), 1, - anon_sym_COMMA, - STATE(1996), 1, - aux_sym_type_arguments_repeat1, + [62232] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62274] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4685), 1, - anon_sym_SEMI, - STATE(331), 1, - sym_declaration_list, + ACTIONS(4758), 2, + anon_sym_COMMA, + anon_sym_GT, + [62244] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62288] = 4, - ACTIONS(3937), 1, + ACTIONS(4760), 2, + anon_sym_COMMA, + anon_sym_GT, + [62256] = 4, + ACTIONS(4762), 1, anon_sym_RBRACE, - ACTIONS(4687), 1, + ACTIONS(4764), 1, anon_sym_COMMA, - STATE(2015), 1, + STATE(1881), 1, aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62302] = 4, - ACTIONS(2492), 1, - anon_sym_LT2, - ACTIONS(4689), 1, - sym_identifier, - STATE(831), 1, - sym_type_arguments, + [62270] = 3, + ACTIONS(2453), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62316] = 2, + ACTIONS(4760), 2, + anon_sym_COMMA, + anon_sym_GT, + [62282] = 4, + ACTIONS(4766), 1, + anon_sym_RBRACE, + ACTIONS(4768), 1, + anon_sym_COMMA, + STATE(2097), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4691), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [62296] = 4, + ACTIONS(4415), 1, anon_sym_COMMA, - [62326] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + ACTIONS(4770), 1, + anon_sym_PIPE, + STATE(1931), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4693), 2, + [62310] = 4, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4296), 1, anon_sym_COMMA, - anon_sym_GT, - [62338] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4695), 1, - sym_identifier, - STATE(2443), 1, - sym_type_arguments, + STATE(1972), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62352] = 4, - ACTIONS(2492), 1, + [62324] = 4, + ACTIONS(2574), 1, anon_sym_LT2, - ACTIONS(4697), 1, + ACTIONS(4772), 1, sym_identifier, - STATE(1187), 1, + STATE(1205), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62366] = 4, - ACTIONS(3355), 1, + [62338] = 4, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4774), 1, + anon_sym_SEMI, + STATE(1026), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62352] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4695), 1, + ACTIONS(4776), 1, sym_identifier, - STATE(2311), 1, + STATE(2338), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62380] = 4, - ACTIONS(2357), 1, - anon_sym_RPAREN, - ACTIONS(4699), 1, + [62366] = 4, + ACTIONS(4760), 1, + anon_sym_GT, + ACTIONS(4778), 1, anon_sym_COMMA, - STATE(1839), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1991), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62394] = 4, - ACTIONS(4701), 1, - anon_sym_RPAREN, - ACTIONS(4703), 1, - anon_sym_COMMA, - STATE(1976), 1, - aux_sym_tuple_type_repeat1, + [62380] = 4, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(4781), 1, + anon_sym_GT, + STATE(2205), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62408] = 4, - ACTIONS(4706), 1, + [62394] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4776), 1, sym_identifier, - ACTIONS(4708), 1, - anon_sym_ref, - ACTIONS(4710), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62422] = 4, - ACTIONS(4712), 1, - anon_sym_COMMA, - ACTIONS(4715), 1, - anon_sym_GT, - STATE(1978), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62436] = 4, - ACTIONS(2492), 1, + [62408] = 4, + ACTIONS(2574), 1, anon_sym_LT2, - ACTIONS(4697), 1, + ACTIONS(4772), 1, sym_identifier, - STATE(1181), 1, + STATE(1202), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62450] = 4, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(4717), 1, - anon_sym_GT, - STATE(2233), 1, - sym_lifetime, + [62422] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62464] = 4, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(4719), 1, + ACTIONS(4783), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [62432] = 4, + ACTIONS(4785), 1, + anon_sym_COMMA, + ACTIONS(4788), 1, anon_sym_GT, - STATE(2233), 1, - sym_lifetime, + STATE(1996), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62478] = 4, - ACTIONS(4719), 1, - anon_sym_GT, - ACTIONS(4721), 1, - anon_sym_COMMA, - STATE(1978), 1, - aux_sym_for_lifetimes_repeat1, + [62446] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62492] = 4, - ACTIONS(4723), 1, - anon_sym_RBRACE, - ACTIONS(4725), 1, + ACTIONS(4790), 2, anon_sym_COMMA, - STATE(2102), 1, - aux_sym_use_list_repeat1, + anon_sym_GT, + [62458] = 3, + ACTIONS(4794), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62506] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4727), 1, - sym_identifier, - STATE(2443), 1, - sym_type_arguments, + ACTIONS(4792), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62470] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4796), 1, + anon_sym_SEMI, + STATE(395), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62520] = 2, + [62484] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4798), 1, + anon_sym_SEMI, + ACTIONS(4800), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4729), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [62498] = 4, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4296), 1, anon_sym_COMMA, - [62530] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + STATE(1965), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4731), 2, + [62512] = 4, + ACTIONS(4802), 1, + anon_sym_RPAREN, + ACTIONS(4804), 1, anon_sym_COMMA, - anon_sym_GT, - [62542] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4727), 1, - sym_identifier, - STATE(2311), 1, - sym_type_arguments, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62556] = 4, - ACTIONS(4733), 1, - sym_identifier, - ACTIONS(4735), 1, - anon_sym_await, - ACTIONS(4737), 1, - sym_integer_literal, + [62526] = 4, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4806), 1, + anon_sym_SEMI, + STATE(1011), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62570] = 4, - ACTIONS(2492), 1, - anon_sym_LT2, - ACTIONS(4689), 1, - sym_identifier, - STATE(866), 1, - sym_type_arguments, + [62540] = 4, + ACTIONS(4383), 1, + anon_sym_COMMA, + ACTIONS(4385), 1, + anon_sym_GT, + STATE(1946), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62584] = 3, - ACTIONS(4352), 1, - anon_sym_EQ, + [62554] = 3, + ACTIONS(4810), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4386), 2, + ACTIONS(4808), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [62596] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4014), 1, - sym_identifier, - STATE(2443), 1, - sym_type_arguments, + [62566] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62610] = 4, - ACTIONS(3784), 1, - anon_sym_GT, - ACTIONS(4739), 1, + ACTIONS(4812), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2000), 1, - aux_sym_type_parameters_repeat1, + [62578] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62624] = 4, - ACTIONS(3355), 1, + ACTIONS(4814), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [62588] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4741), 1, + ACTIONS(4816), 1, sym_identifier, - STATE(2311), 1, + STATE(2338), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62638] = 2, + [62602] = 4, + ACTIONS(4818), 1, + anon_sym_RBRACE, + ACTIONS(4820), 1, + anon_sym_COMMA, + STATE(1944), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4743), 3, - anon_sym_EQ, + [62616] = 4, + ACTIONS(4822), 1, + anon_sym_RPAREN, + ACTIONS(4824), 1, anon_sym_COMMA, - anon_sym_GT, - [62648] = 4, - ACTIONS(4745), 1, - anon_sym_for, - ACTIONS(4747), 1, - anon_sym_loop, - ACTIONS(4749), 1, - anon_sym_while, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62662] = 4, - ACTIONS(4751), 1, - anon_sym_COMMA, - ACTIONS(4754), 1, - anon_sym_GT, - STATE(1996), 1, - aux_sym_type_arguments_repeat1, + [62630] = 4, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4827), 1, + anon_sym_SEMI, + STATE(989), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62676] = 4, - ACTIONS(3355), 1, + [62644] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4741), 1, + ACTIONS(4816), 1, sym_identifier, - STATE(2443), 1, + STATE(2340), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62690] = 4, - ACTIONS(4167), 1, - anon_sym_RPAREN, - ACTIONS(4169), 1, + [62658] = 4, + ACTIONS(3263), 1, + anon_sym_RBRACK, + ACTIONS(4829), 1, anon_sym_COMMA, - STATE(1903), 1, - aux_sym_parameters_repeat1, + STATE(2013), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62704] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4756), 1, - anon_sym_SEMI, - ACTIONS(4758), 1, + [62672] = 4, + ACTIONS(518), 1, anon_sym_RBRACK, + ACTIONS(4832), 1, + anon_sym_COMMA, + STATE(2013), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62718] = 4, - ACTIONS(4386), 1, - anon_sym_GT, - ACTIONS(4760), 1, - anon_sym_COMMA, - STATE(2000), 1, - aux_sym_type_parameters_repeat1, + [62686] = 4, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4834), 1, + anon_sym_SEMI, + STATE(2380), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62732] = 4, - ACTIONS(4228), 1, + [62700] = 4, + ACTIONS(4314), 1, anon_sym_COMMA, - ACTIONS(4230), 1, + ACTIONS(4316), 1, anon_sym_GT, - STATE(2073), 1, + STATE(2088), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62746] = 4, - ACTIONS(2405), 1, - anon_sym_PLUS, - ACTIONS(4763), 1, - sym_mutable_specifier, - ACTIONS(4765), 1, - sym_self, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62760] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [62714] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4767), 2, + ACTIONS(4836), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - [62772] = 4, - ACTIONS(3738), 1, + [62724] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4769), 1, + ACTIONS(4838), 1, anon_sym_SEMI, - STATE(437), 1, + STATE(986), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62786] = 3, - ACTIONS(2405), 1, - anon_sym_PLUS, + [62738] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4840), 1, + anon_sym_SEMI, + STATE(255), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4754), 2, + [62752] = 4, + ACTIONS(4842), 1, + anon_sym_RPAREN, + ACTIONS(4844), 1, anon_sym_COMMA, - anon_sym_GT, - [62798] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4771), 1, - sym_identifier, - STATE(2443), 1, - sym_type_arguments, + STATE(2020), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62812] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(4773), 1, - anon_sym_SEMI, - STATE(994), 1, - sym_declaration_list, + [62766] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62826] = 4, - ACTIONS(3738), 1, + ACTIONS(4847), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62778] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4775), 1, + ACTIONS(4849), 1, anon_sym_SEMI, - STATE(481), 1, + STATE(788), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62840] = 2, + [62792] = 4, + ACTIONS(3782), 1, + anon_sym_RBRACE, + ACTIONS(4851), 1, + anon_sym_COMMA, + STATE(1957), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4777), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + [62806] = 4, + ACTIONS(3782), 1, + anon_sym_RBRACE, + ACTIONS(4851), 1, anon_sym_COMMA, - [62850] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4014), 1, - sym_identifier, - STATE(2311), 1, - sym_type_arguments, + STATE(1955), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62864] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [62820] = 4, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4855), 1, + anon_sym_GT, + STATE(1930), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4754), 2, + [62834] = 4, + ACTIONS(4857), 1, + anon_sym_RBRACE, + ACTIONS(4859), 1, anon_sym_COMMA, - anon_sym_GT, - [62876] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + STATE(2026), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62848] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(4862), 1, + anon_sym_SEMI, + STATE(979), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4779), 2, + [62862] = 4, + ACTIONS(3852), 1, + anon_sym_RBRACE, + ACTIONS(4864), 1, anon_sym_COMMA, - anon_sym_GT, - [62888] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4771), 1, - sym_identifier, - STATE(2311), 1, - sym_type_arguments, + STATE(2026), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62902] = 4, - ACTIONS(3722), 1, + [62876] = 4, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4781), 1, + ACTIONS(4866), 1, anon_sym_SEMI, - STATE(2506), 1, + STATE(2554), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62916] = 4, - ACTIONS(4783), 1, + [62890] = 4, + ACTIONS(3872), 1, anon_sym_RBRACE, - ACTIONS(4785), 1, + ACTIONS(4868), 1, anon_sym_COMMA, - STATE(2015), 1, - aux_sym_struct_pattern_repeat1, + STATE(2026), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62930] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4788), 1, + [62904] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4870), 1, anon_sym_SEMI, - ACTIONS(4790), 1, - anon_sym_EQ, + STATE(322), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62944] = 4, - ACTIONS(4010), 1, + [62918] = 4, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4792), 1, + ACTIONS(4872), 1, anon_sym_SEMI, - STATE(336), 1, - sym_block, + STATE(306), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62958] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, + [62932] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4874), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62946] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4794), 2, + ACTIONS(4876), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62970] = 3, - ACTIONS(4798), 1, - anon_sym_COLON, + [62956] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4878), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [62966] = 3, + ACTIONS(4882), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4796), 2, + ACTIONS(4880), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62982] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4800), 1, - sym_identifier, - STATE(2443), 1, - sym_type_arguments, + [62978] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4884), 1, + anon_sym_SEMI, + ACTIONS(4886), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62996] = 2, + [62992] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4802), 3, + ACTIONS(4888), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [63002] = 4, + ACTIONS(3175), 1, anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4890), 1, anon_sym_COMMA, - [63006] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4800), 1, - sym_identifier, - STATE(2311), 1, - sym_type_arguments, + STATE(2020), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63020] = 4, - ACTIONS(4010), 1, + [63016] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4804), 1, + ACTIONS(4892), 1, anon_sym_SEMI, - STATE(390), 1, + STATE(293), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63034] = 4, - ACTIONS(4010), 1, + [63030] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4806), 1, + ACTIONS(4894), 1, anon_sym_SEMI, - STATE(261), 1, - sym_block, + STATE(970), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63048] = 4, - ACTIONS(4808), 1, - anon_sym_COMMA, - ACTIONS(4810), 1, - anon_sym_GT, - STATE(1982), 1, - aux_sym_for_lifetimes_repeat1, + [63044] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_SEMI, + STATE(964), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63062] = 4, - ACTIONS(2454), 1, - anon_sym_RPAREN, - ACTIONS(4812), 1, - anon_sym_COMMA, - STATE(1976), 1, - aux_sym_tuple_type_repeat1, + [63058] = 4, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(4898), 1, + anon_sym_EQ, + STATE(2535), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63076] = 4, - ACTIONS(4814), 1, - anon_sym_RBRACE, - ACTIONS(4816), 1, + [63072] = 4, + ACTIONS(3840), 1, + anon_sym_GT, + ACTIONS(4900), 1, anon_sym_COMMA, - STATE(1968), 1, - aux_sym_struct_pattern_repeat1, + STATE(1904), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63090] = 4, - ACTIONS(798), 1, - anon_sym_RPAREN, - ACTIONS(4818), 1, + [63086] = 4, + ACTIONS(3832), 1, + anon_sym_GT, + ACTIONS(4902), 1, anon_sym_COMMA, - STATE(2097), 1, - aux_sym_parameters_repeat1, + STATE(1904), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63104] = 3, - ACTIONS(3115), 1, - anon_sym_COLON_COLON, + [63100] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(4904), 1, + anon_sym_SEMI, + STATE(907), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4210), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63116] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4820), 1, - anon_sym_SEMI, - ACTIONS(4822), 1, - anon_sym_EQ, + [63114] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63130] = 4, - ACTIONS(3750), 1, + ACTIONS(4906), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [63124] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4824), 1, + ACTIONS(4908), 1, anon_sym_SEMI, - STATE(920), 1, - sym_declaration_list, + STATE(270), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63144] = 4, - ACTIONS(388), 1, - anon_sym_RPAREN, - ACTIONS(4826), 1, - anon_sym_COMMA, - STATE(2101), 1, - aux_sym_arguments_repeat1, + [63138] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63158] = 4, - ACTIONS(4828), 1, - anon_sym_RPAREN, - ACTIONS(4830), 1, + ACTIONS(4910), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(1948), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63172] = 4, - ACTIONS(4004), 1, + anon_sym_GT, + [63148] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4832), 1, + ACTIONS(4912), 1, anon_sym_SEMI, - STATE(878), 1, + STATE(956), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63186] = 4, - ACTIONS(3754), 1, - anon_sym_RBRACE, - ACTIONS(4834), 1, - anon_sym_COMMA, - STATE(1942), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63200] = 4, - ACTIONS(4004), 1, - anon_sym_LBRACE, - ACTIONS(4836), 1, - anon_sym_SEMI, - STATE(885), 1, - sym_block, + [63162] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63214] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + ACTIONS(2373), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [63172] = 4, + ACTIONS(386), 1, + anon_sym_RPAREN, + ACTIONS(3213), 1, + anon_sym_COMMA, + STATE(1942), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4333), 2, + [63186] = 4, + ACTIONS(794), 1, anon_sym_RPAREN, + ACTIONS(4914), 1, anon_sym_COMMA, - [63226] = 4, - ACTIONS(4004), 1, - anon_sym_LBRACE, - ACTIONS(4838), 1, - anon_sym_SEMI, - STATE(904), 1, - sym_block, + STATE(1965), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63240] = 4, - ACTIONS(3355), 1, + [63200] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4840), 1, + ACTIONS(4874), 1, sym_identifier, - STATE(2311), 1, + STATE(2340), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63254] = 4, - ACTIONS(4004), 1, - anon_sym_LBRACE, - ACTIONS(4842), 1, - anon_sym_SEMI, - STATE(947), 1, - sym_block, + [63214] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63268] = 4, - ACTIONS(3983), 1, + ACTIONS(4916), 3, anon_sym_PLUS, - ACTIONS(4844), 1, + anon_sym_STAR, + anon_sym_QMARK, + [63224] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4918), 1, anon_sym_SEMI, - ACTIONS(4846), 1, - anon_sym_EQ, + ACTIONS(4920), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63282] = 4, - ACTIONS(3754), 1, - anon_sym_RBRACE, - ACTIONS(4834), 1, - anon_sym_COMMA, - STATE(1940), 1, - aux_sym_field_declaration_list_repeat1, + [63238] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_SEMI, + STATE(397), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63296] = 4, - ACTIONS(4004), 1, - anon_sym_LBRACE, - ACTIONS(4848), 1, - anon_sym_SEMI, - STATE(965), 1, - sym_block, + [63252] = 4, + ACTIONS(3824), 1, + anon_sym_RBRACE, + ACTIONS(4924), 1, + anon_sym_COMMA, + STATE(1955), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63310] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(4850), 1, + [63266] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4926), 1, anon_sym_SEMI, - STATE(976), 1, - sym_declaration_list, + ACTIONS(4928), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63324] = 4, - ACTIONS(3750), 1, + [63280] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4852), 1, + ACTIONS(4930), 1, anon_sym_SEMI, - STATE(988), 1, - sym_declaration_list, + STATE(345), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63338] = 4, - ACTIONS(3983), 1, + [63294] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4854), 1, + ACTIONS(4932), 1, anon_sym_SEMI, - ACTIONS(4856), 1, + ACTIONS(4934), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63352] = 4, - ACTIONS(4340), 1, - anon_sym_COMMA, - ACTIONS(4342), 1, - anon_sym_GT, - STATE(1966), 1, - aux_sym_type_arguments_repeat1, + [63308] = 4, + ACTIONS(4936), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_ref, + ACTIONS(4940), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63366] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4840), 1, - sym_identifier, - STATE(2443), 1, - sym_type_arguments, + [63322] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63380] = 4, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4858), 1, - anon_sym_SEMI, - STATE(2470), 1, - sym_where_clause, + ACTIONS(4335), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63334] = 4, + ACTIONS(554), 1, + anon_sym_RBRACK, + ACTIONS(3207), 1, + anon_sym_COMMA, + STATE(2013), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63394] = 4, - ACTIONS(4004), 1, - anon_sym_LBRACE, - ACTIONS(4860), 1, - anon_sym_SEMI, - STATE(1012), 1, - sym_block, + [63348] = 3, + ACTIONS(3195), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63408] = 4, - ACTIONS(4862), 1, + ACTIONS(4942), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63360] = 4, + ACTIONS(4944), 1, anon_sym_RBRACE, - ACTIONS(4864), 1, + ACTIONS(4946), 1, anon_sym_COMMA, - STATE(2124), 1, + STATE(2139), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63422] = 2, + [63374] = 4, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_SEMI, + STATE(2478), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4335), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [63432] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4866), 1, - anon_sym_SEMI, - STATE(401), 1, - sym_declaration_list, + [63388] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4950), 1, + anon_sym_as, + ACTIONS(4952), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63446] = 4, - ACTIONS(4004), 1, + [63402] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4868), 1, + ACTIONS(4954), 1, anon_sym_SEMI, - STATE(1019), 1, + STATE(288), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63460] = 4, - ACTIONS(3768), 1, - anon_sym_RBRACE, - ACTIONS(4870), 1, - anon_sym_COMMA, - STATE(2066), 1, - aux_sym_enum_variant_list_repeat2, + [63416] = 4, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4956), 1, + anon_sym_EQ_GT, + ACTIONS(4958), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63474] = 3, - ACTIONS(4874), 1, - anon_sym_EQ, + [63430] = 4, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4960), 1, + anon_sym_SEMI, + STATE(2511), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4872), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63486] = 4, - ACTIONS(3750), 1, + [63444] = 4, + ACTIONS(2638), 1, anon_sym_LBRACE, - ACTIONS(4876), 1, - anon_sym_SEMI, - STATE(992), 1, - sym_declaration_list, + ACTIONS(4962), 1, + anon_sym_COLON_COLON, + STATE(1131), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63500] = 4, - ACTIONS(4224), 1, + [63458] = 4, + ACTIONS(4308), 1, anon_sym_RPAREN, - ACTIONS(4226), 1, + ACTIONS(4310), 1, anon_sym_COMMA, - STATE(2119), 1, + STATE(2144), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63514] = 2, + [63472] = 4, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, + sym_identifier, + STATE(1977), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4878), 3, + [63486] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4966), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63524] = 4, - ACTIONS(2367), 1, - anon_sym_RBRACK, - ACTIONS(4880), 1, - anon_sym_COMMA, - STATE(1839), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4968), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63538] = 2, + [63500] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4882), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63548] = 4, - ACTIONS(4004), 1, + ACTIONS(4970), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [63510] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4884), 1, + ACTIONS(4972), 1, anon_sym_SEMI, - STATE(887), 1, + STATE(876), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63562] = 2, + [63524] = 3, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4886), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63572] = 2, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [63536] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4888), 3, + ACTIONS(4974), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63582] = 4, - ACTIONS(4364), 1, + [63546] = 4, + ACTIONS(4425), 1, anon_sym_COMMA, - ACTIONS(4366), 1, + ACTIONS(4427), 1, anon_sym_GT, STATE(2113), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63596] = 4, - ACTIONS(4890), 1, + [63560] = 4, + ACTIONS(4976), 1, anon_sym_RBRACE, - ACTIONS(4892), 1, + ACTIONS(4978), 1, anon_sym_COMMA, - STATE(2066), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1889), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63610] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(4895), 1, + [63574] = 4, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4980), 1, anon_sym_SEMI, - STATE(981), 1, - sym_declaration_list, + STATE(2453), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63624] = 4, - ACTIONS(3766), 1, - anon_sym_RBRACE, - ACTIONS(4897), 1, - anon_sym_COMMA, - STATE(1942), 1, - aux_sym_field_declaration_list_repeat1, + [63588] = 4, + ACTIONS(4982), 1, + anon_sym_for, + ACTIONS(4984), 1, + anon_sym_loop, + ACTIONS(4986), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63638] = 4, - ACTIONS(2444), 1, + [63602] = 4, + ACTIONS(2540), 1, anon_sym_RPAREN, - ACTIONS(4899), 1, + ACTIONS(4988), 1, anon_sym_COMMA, - STATE(1976), 1, + STATE(1936), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63652] = 4, - ACTIONS(4901), 1, - anon_sym_RBRACE, - ACTIONS(4903), 1, - anon_sym_COMMA, - STATE(2070), 1, - aux_sym_use_list_repeat1, + [63616] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63666] = 4, - ACTIONS(3760), 1, + ACTIONS(4990), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63628] = 4, + ACTIONS(3856), 1, anon_sym_GT, - ACTIONS(4906), 1, + ACTIONS(4992), 1, anon_sym_COMMA, - STATE(2000), 1, + STATE(1904), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63680] = 2, + [63642] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4994), 1, + anon_sym_SEMI, + STATE(475), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4908), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [63690] = 4, - ACTIONS(3746), 1, + [63656] = 4, + ACTIONS(3848), 1, anon_sym_GT, - ACTIONS(4910), 1, + ACTIONS(4996), 1, anon_sym_COMMA, - STATE(2000), 1, + STATE(1904), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63704] = 4, - ACTIONS(3983), 1, + [63670] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4912), 1, + ACTIONS(4998), 1, anon_sym_SEMI, - ACTIONS(4914), 1, + ACTIONS(5000), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63718] = 4, - ACTIONS(3983), 1, + [63684] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4916), 1, - anon_sym_SEMI, - ACTIONS(4918), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63732] = 4, - ACTIONS(3750), 1, + ACTIONS(5002), 2, + anon_sym_COMMA, + anon_sym_GT, + [63696] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4920), 1, + ACTIONS(5004), 1, anon_sym_SEMI, - STATE(867), 1, + STATE(853), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63746] = 4, - ACTIONS(3750), 1, + [63710] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(5006), 1, anon_sym_SEMI, - STATE(963), 1, - sym_declaration_list, + STATE(921), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63760] = 4, - ACTIONS(4924), 1, - anon_sym_RPAREN, - ACTIONS(4926), 1, - anon_sym_COMMA, - STATE(1931), 1, - aux_sym_meta_arguments_repeat1, + [63724] = 4, + ACTIONS(5008), 1, + sym_identifier, + ACTIONS(5010), 1, + anon_sym_ref, + ACTIONS(5012), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63774] = 4, - ACTIONS(3983), 1, + [63738] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4928), 1, + ACTIONS(5014), 1, anon_sym_SEMI, - ACTIONS(4930), 1, + ACTIONS(5016), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63788] = 2, + [63752] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(5018), 1, + anon_sym_SEMI, + STATE(435), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4932), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63798] = 2, + [63766] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4934), 3, + ACTIONS(5020), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63808] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(4936), 1, - anon_sym_SEMI, - STATE(956), 1, - sym_declaration_list, + [63776] = 4, + ACTIONS(3347), 1, + anon_sym_RBRACE, + ACTIONS(5022), 1, + anon_sym_COMMA, + STATE(1906), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63822] = 4, - ACTIONS(4004), 1, - anon_sym_LBRACE, - ACTIONS(4938), 1, - anon_sym_SEMI, - STATE(938), 1, - sym_block, + [63790] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63836] = 4, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4940), 1, + ACTIONS(5024), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2097), 1, - aux_sym_parameters_repeat1, + [63800] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63850] = 4, - ACTIONS(3764), 1, + ACTIONS(5026), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4942), 1, anon_sym_COMMA, - STATE(2066), 1, - aux_sym_enum_variant_list_repeat2, + [63810] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(5028), 1, + anon_sym_SEMI, + STATE(811), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63864] = 2, + [63824] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4944), 3, - anon_sym_SEMI, + ACTIONS(5030), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - [63874] = 4, - ACTIONS(3983), 1, + anon_sym_COMMA, + [63836] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4946), 1, + ACTIONS(5032), 1, anon_sym_SEMI, - ACTIONS(4948), 1, + ACTIONS(5034), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63888] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4950), 1, - anon_sym_SEMI, - STATE(413), 1, - sym_declaration_list, + [63850] = 4, + ACTIONS(3784), 1, + anon_sym_RBRACE, + ACTIONS(5036), 1, + anon_sym_COMMA, + STATE(2030), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63902] = 4, - ACTIONS(4952), 1, + [63864] = 4, + ACTIONS(5038), 1, anon_sym_RBRACE, - ACTIONS(4954), 1, + ACTIONS(5040), 1, anon_sym_COMMA, - STATE(2104), 1, + STATE(2105), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63916] = 4, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_SEMI, - STATE(2312), 1, - sym_where_clause, + [63878] = 4, + ACTIONS(3784), 1, + anon_sym_RBRACE, + ACTIONS(5036), 1, + anon_sym_COMMA, + STATE(2026), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63930] = 4, - ACTIONS(3722), 1, + [63892] = 4, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(5042), 1, anon_sym_SEMI, - STATE(2513), 1, + STATE(2553), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63944] = 4, - ACTIONS(3983), 1, + [63906] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5044), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63916] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4960), 1, + ACTIONS(5046), 1, anon_sym_SEMI, - ACTIONS(4962), 1, + ACTIONS(5048), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63958] = 4, - ACTIONS(4004), 1, + [63930] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4964), 1, + ACTIONS(5050), 1, anon_sym_SEMI, - STATE(873), 1, + STATE(834), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63972] = 4, - ACTIONS(552), 1, - anon_sym_RBRACK, - ACTIONS(3109), 1, - anon_sym_COMMA, - STATE(1959), 1, - aux_sym_array_expression_repeat1, + [63944] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63986] = 2, + ACTIONS(5052), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63954] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4966), 3, + ACTIONS(5054), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63996] = 4, - ACTIONS(3786), 1, - anon_sym_GT, - ACTIONS(4968), 1, + [63964] = 4, + ACTIONS(5056), 1, + anon_sym_RPAREN, + ACTIONS(5058), 1, anon_sym_COMMA, - STATE(2000), 1, - aux_sym_type_parameters_repeat1, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64010] = 4, - ACTIONS(4333), 1, - anon_sym_RPAREN, - ACTIONS(4970), 1, + [63978] = 4, + ACTIONS(910), 1, + anon_sym_GT, + ACTIONS(5060), 1, anon_sym_COMMA, - STATE(2097), 1, - aux_sym_parameters_repeat1, + STATE(1991), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64024] = 4, - ACTIONS(3750), 1, + [63992] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4973), 1, + ACTIONS(5062), 1, anon_sym_SEMI, - STATE(856), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64038] = 2, + STATE(462), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4975), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64048] = 4, - ACTIONS(3750), 1, + [64006] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4977), 1, + ACTIONS(5064), 1, anon_sym_SEMI, - STATE(809), 1, + STATE(793), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64062] = 4, - ACTIONS(3211), 1, - anon_sym_RPAREN, - ACTIONS(4979), 1, - anon_sym_COMMA, - STATE(2101), 1, - aux_sym_arguments_repeat1, + [64020] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64076] = 4, - ACTIONS(3267), 1, + ACTIONS(5066), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4982), 1, anon_sym_COMMA, - STATE(2070), 1, - aux_sym_use_list_repeat1, + [64030] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64090] = 2, + ACTIONS(5068), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64040] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4984), 3, + ACTIONS(5070), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [64100] = 4, - ACTIONS(3756), 1, - anon_sym_RBRACE, - ACTIONS(4436), 1, + [64050] = 4, + ACTIONS(4161), 1, anon_sym_COMMA, - STATE(1942), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4163), 1, + anon_sym_GT, + STATE(2045), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64114] = 4, - ACTIONS(3983), 1, + [64064] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4986), 1, - anon_sym_SEMI, - ACTIONS(4988), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64128] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4990), 1, - anon_sym_SEMI, - ACTIONS(4992), 1, - anon_sym_EQ, + ACTIONS(5072), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64076] = 4, + ACTIONS(5074), 1, + sym_identifier, + ACTIONS(5076), 1, + anon_sym_ref, + ACTIONS(5078), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64142] = 2, + [64090] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4205), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4994), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [64152] = 4, - ACTIONS(3722), 1, + [64104] = 4, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4996), 1, + ACTIONS(5080), 1, anon_sym_SEMI, - STATE(2507), 1, + STATE(2543), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64166] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(4998), 1, - anon_sym_SEMI, - STATE(835), 1, - sym_declaration_list, + [64118] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64180] = 4, - ACTIONS(3750), 1, + ACTIONS(5082), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64128] = 4, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(5000), 1, + ACTIONS(5084), 1, anon_sym_SEMI, - STATE(800), 1, + STATE(327), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64194] = 4, - ACTIONS(4084), 1, - anon_sym_COMMA, - ACTIONS(4086), 1, - anon_sym_GT, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, + [64142] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(5086), 1, + anon_sym_SEMI, + STATE(325), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64208] = 4, - ACTIONS(5002), 1, - anon_sym_RBRACE, - ACTIONS(5004), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_struct_pattern_repeat1, + [64156] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4205), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64222] = 4, - ACTIONS(898), 1, - anon_sym_GT, - ACTIONS(5006), 1, - anon_sym_COMMA, - STATE(1996), 1, - aux_sym_type_arguments_repeat1, + [64170] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, + anon_sym_SEMI, + STATE(364), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64236] = 4, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(5008), 1, + [64184] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(5090), 1, anon_sym_SEMI, - STATE(2394), 1, - sym_where_clause, + STATE(847), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64250] = 4, - ACTIONS(4004), 1, + [64198] = 4, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(5092), 1, anon_sym_SEMI, - STATE(782), 1, - sym_block, + STATE(391), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64264] = 3, - ACTIONS(5014), 1, + [64212] = 3, + ACTIONS(4290), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5012), 2, - anon_sym_RBRACE, + ACTIONS(5094), 2, anon_sym_COMMA, - [64276] = 4, - ACTIONS(794), 1, + anon_sym_PIPE, + [64224] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5096), 2, anon_sym_RPAREN, - ACTIONS(4200), 1, anon_sym_COMMA, - STATE(2084), 1, - aux_sym_parameters_repeat1, + [64236] = 4, + ACTIONS(5094), 1, + anon_sym_PIPE, + ACTIONS(5098), 1, + anon_sym_COMMA, + STATE(2133), 1, + aux_sym_closure_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64250] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64290] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(5016), 1, - anon_sym_SEMI, - STATE(425), 1, - sym_declaration_list, + ACTIONS(5101), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64262] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64304] = 4, - ACTIONS(794), 1, + ACTIONS(2401), 3, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(4200), 1, - anon_sym_COMMA, - STATE(2097), 1, - aux_sym_parameters_repeat1, + anon_sym_RBRACE, + [64272] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(5103), 1, + anon_sym_SEMI, + STATE(862), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64318] = 4, - ACTIONS(3983), 1, + [64286] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5018), 1, + ACTIONS(5105), 1, anon_sym_SEMI, - ACTIONS(5020), 1, + ACTIONS(5107), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64332] = 3, - ACTIONS(3983), 1, + [64300] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, anon_sym_PLUS, + STATE(1050), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4701), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64344] = 4, - ACTIONS(3762), 1, + [64314] = 4, + ACTIONS(3870), 1, anon_sym_RBRACE, - ACTIONS(5022), 1, + ACTIONS(5109), 1, anon_sym_COMMA, - STATE(2085), 1, + STATE(1955), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64358] = 4, - ACTIONS(5024), 1, - anon_sym_RBRACE, - ACTIONS(5026), 1, - anon_sym_COMMA, - STATE(2123), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64372] = 4, - ACTIONS(3762), 1, + [64328] = 4, + ACTIONS(3870), 1, anon_sym_RBRACE, - ACTIONS(5022), 1, + ACTIONS(5109), 1, anon_sym_COMMA, - STATE(2066), 1, + STATE(2058), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64386] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(92), 1, - sym_block, + [64342] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64397] = 3, - ACTIONS(5029), 1, + ACTIONS(5111), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [64352] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(5113), 1, anon_sym_SEMI, - ACTIONS(5031), 1, - anon_sym_RBRACE, + STATE(404), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64408] = 3, - ACTIONS(5029), 1, + [64366] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5115), 1, anon_sym_SEMI, - ACTIONS(5033), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64419] = 3, - ACTIONS(4046), 1, - anon_sym_LBRACE, - STATE(329), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64430] = 3, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(458), 1, - sym_field_declaration_list, + ACTIONS(5117), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64441] = 2, + [64380] = 4, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(4245), 1, + anon_sym_COMMA, + STATE(1965), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5035), 2, - sym_identifier, - sym_metavariable, - [64450] = 3, - ACTIONS(15), 1, + [64394] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - STATE(149), 1, + ACTIONS(5119), 1, + anon_sym_SEMI, + STATE(341), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64461] = 2, + [64408] = 4, + ACTIONS(3820), 1, + anon_sym_RBRACE, + ACTIONS(5121), 1, + anon_sym_COMMA, + STATE(1924), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5024), 2, - anon_sym_RBRACE, + [64422] = 4, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(4245), 1, anon_sym_COMMA, - [64470] = 3, - ACTIONS(5037), 1, - sym_identifier, - ACTIONS(5039), 1, - sym_mutable_specifier, + STATE(2053), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64481] = 3, - ACTIONS(2937), 1, - anon_sym_COLON, - ACTIONS(3983), 1, - anon_sym_PLUS, + [64436] = 3, + ACTIONS(4171), 1, + anon_sym_LBRACE, + STATE(478), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64492] = 3, - ACTIONS(4046), 1, + [64447] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(354), 1, - sym_enum_variant_list, + STATE(91), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64503] = 3, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1372), 1, - sym_parameters, + [64458] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64514] = 3, - ACTIONS(5041), 1, - sym_identifier, - ACTIONS(5043), 1, - sym_mutable_specifier, + [64469] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(399), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64525] = 3, - ACTIONS(3744), 1, + [64480] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(324), 1, + STATE(800), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64536] = 3, - ACTIONS(4446), 1, - sym_identifier, - ACTIONS(4450), 1, - sym_mutable_specifier, + [64491] = 3, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(792), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64547] = 3, - ACTIONS(3720), 1, - anon_sym_LBRACE, - STATE(781), 1, - sym_field_declaration_list, + [64502] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64558] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5045), 1, - anon_sym_SEMI, + ACTIONS(5125), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64511] = 3, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(791), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64569] = 3, - ACTIONS(3744), 1, + [64522] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(322), 1, + STATE(805), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64580] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5047), 1, - anon_sym_EQ, + [64533] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(812), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64591] = 3, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(321), 1, - sym_declaration_list, + [64544] = 3, + ACTIONS(5127), 1, + anon_sym_SEMI, + ACTIONS(5129), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64602] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5049), 1, - anon_sym_in, + [64555] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64613] = 3, - ACTIONS(3720), 1, - anon_sym_LBRACE, - STATE(788), 1, - sym_field_declaration_list, + ACTIONS(5131), 2, + sym_identifier, + sym_metavariable, + [64564] = 3, + ACTIONS(5133), 1, + anon_sym_SEMI, + ACTIONS(5135), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64624] = 3, - ACTIONS(3987), 1, + [64575] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(793), 1, - sym_enum_variant_list, + STATE(149), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64635] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5051), 1, - anon_sym_EQ, + [64586] = 3, + ACTIONS(5133), 1, + anon_sym_SEMI, + ACTIONS(5137), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64646] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_EQ, + [64597] = 3, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1392), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64657] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5055), 1, - anon_sym_in, + [64608] = 3, + ACTIONS(5139), 1, + sym_identifier, + ACTIONS(5141), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64668] = 3, - ACTIONS(3359), 1, + [64619] = 3, + ACTIONS(2566), 1, anon_sym_LPAREN, - STATE(1669), 1, + STATE(850), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64679] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5057), 1, - anon_sym_EQ, + [64630] = 3, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(816), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64690] = 3, - ACTIONS(3738), 1, + [64641] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(463), 1, - sym_declaration_list, + STATE(817), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64701] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5059), 1, - anon_sym_in, + [64652] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64712] = 3, - ACTIONS(3750), 1, + ACTIONS(5143), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64661] = 3, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(2205), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64672] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(841), 1, + STATE(877), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64723] = 3, - ACTIONS(3983), 1, + [64683] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5061), 1, + ACTIONS(5145), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64734] = 3, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(805), 1, - sym_declaration_list, + [64694] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64745] = 3, - ACTIONS(3720), 1, - anon_sym_LBRACE, - STATE(818), 1, - sym_field_declaration_list, + ACTIONS(4335), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64703] = 3, + ACTIONS(3995), 1, + anon_sym_COLON_COLON, + ACTIONS(5147), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64756] = 2, + [64714] = 3, + ACTIONS(4039), 1, + anon_sym_COLON_COLON, + ACTIONS(5147), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5063), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64765] = 3, - ACTIONS(3750), 1, + [64725] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(862), 1, + STATE(893), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64776] = 3, - ACTIONS(3750), 1, + [64736] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(863), 1, + STATE(896), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64787] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5065), 1, - anon_sym_SEMI, + [64747] = 3, + ACTIONS(4043), 1, + anon_sym_COLON_COLON, + ACTIONS(5147), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64798] = 3, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(823), 1, - sym_declaration_list, + [64758] = 3, + ACTIONS(5074), 1, + sym_identifier, + ACTIONS(5078), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64809] = 3, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, - ACTIONS(5067), 1, - anon_sym_BANG, + [64769] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5149), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64820] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5069), 1, - anon_sym_EQ, + [64780] = 3, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(5151), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64831] = 3, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(824), 1, - sym_declaration_list, + [64791] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5153), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64842] = 3, - ACTIONS(3720), 1, + [64802] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(825), 1, + STATE(787), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64853] = 3, - ACTIONS(3987), 1, + [64813] = 3, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(876), 1, + STATE(924), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64864] = 2, + [64824] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5155), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5071), 2, - sym_identifier, - sym_metavariable, - [64873] = 3, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(371), 1, - sym_field_declaration_list, + [64835] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5157), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64884] = 3, - ACTIONS(3720), 1, + [64846] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(889), 1, + STATE(930), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64895] = 3, - ACTIONS(3983), 1, + [64857] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5073), 1, + ACTIONS(5159), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64906] = 3, - ACTIONS(3720), 1, + [64868] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(770), 1, + STATE(934), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64917] = 3, - ACTIONS(3750), 1, + [64879] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(894), 1, + STATE(935), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64928] = 3, - ACTIONS(4193), 1, + [64890] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5161), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64901] = 3, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(5075), 1, + ACTIONS(5163), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64939] = 3, - ACTIONS(3967), 1, - anon_sym_RBRACE, - ACTIONS(5029), 1, - anon_sym_SEMI, + [64912] = 3, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(886), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64950] = 3, - ACTIONS(3899), 1, - anon_sym_COLON_COLON, - ACTIONS(5077), 1, - anon_sym_RPAREN, + [64923] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5165), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64961] = 3, - ACTIONS(3965), 1, - anon_sym_RPAREN, - ACTIONS(5029), 1, - anon_sym_SEMI, + [64934] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(284), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64972] = 3, - ACTIONS(3738), 1, + [64945] = 3, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(461), 1, + STATE(285), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64983] = 3, - ACTIONS(2722), 1, - anon_sym_COLON, - ACTIONS(3983), 1, + [64956] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5167), 2, + sym_identifier, + sym_metavariable, + [64965] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, + ACTIONS(5169), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64994] = 3, - ACTIONS(4193), 1, + [64976] = 3, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(2025), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64987] = 3, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(5079), 1, + ACTIONS(5171), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65005] = 3, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(5077), 1, - anon_sym_RPAREN, + [64998] = 3, + ACTIONS(4019), 1, + anon_sym_RBRACE, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65016] = 3, - ACTIONS(2726), 1, - anon_sym_COLON, - ACTIONS(3983), 1, - anon_sym_PLUS, + [65009] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(305), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65020] = 3, + ACTIONS(3973), 1, + anon_sym_RBRACE, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65027] = 2, + [65031] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4492), 2, - anon_sym_RPAREN, + ACTIONS(4857), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [65036] = 2, + [65040] = 3, + ACTIONS(3800), 1, + anon_sym_LBRACE, + STATE(355), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5081), 2, - sym_identifier, - sym_metavariable, - [65045] = 3, - ACTIONS(3911), 1, - anon_sym_COLON_COLON, - ACTIONS(5077), 1, - anon_sym_RPAREN, + [65051] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65056] = 3, - ACTIONS(3744), 1, + ACTIONS(4788), 2, + anon_sym_COMMA, + anon_sym_GT, + [65060] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(340), 1, - sym_field_declaration_list, + STATE(1086), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65067] = 3, - ACTIONS(3494), 1, - anon_sym_COLON_COLON, - ACTIONS(5083), 1, - anon_sym_RPAREN, + [65071] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(348), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65078] = 3, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(2025), 1, - sym_lifetime, + [65082] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65089] = 3, - ACTIONS(3963), 1, - anon_sym_RBRACE, - ACTIONS(5029), 1, + ACTIONS(4760), 2, + anon_sym_COMMA, + anon_sym_GT, + [65091] = 3, + ACTIONS(5173), 1, anon_sym_SEMI, + ACTIONS(5175), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65100] = 3, - ACTIONS(2484), 1, - anon_sym_LPAREN, - STATE(865), 1, - sym_parameters, + [65102] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5177), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65111] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_in, + [65113] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(4753), 2, + anon_sym_RBRACE, + anon_sym_COMMA, [65122] = 3, - ACTIONS(5087), 1, - anon_sym_SEMI, - ACTIONS(5089), 1, - anon_sym_as, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5179), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65133] = 3, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(474), 1, - sym_field_declaration_list, + [65133] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65144] = 3, - ACTIONS(5091), 1, - anon_sym_LBRACK, - ACTIONS(5093), 1, - anon_sym_BANG, + ACTIONS(4842), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65142] = 3, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(931), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65155] = 2, + [65153] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(939), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5095), 2, - sym_identifier, - sym_metavariable, [65164] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4901), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5181), 2, + sym_identifier, + sym_metavariable, [65173] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4890), 2, - anon_sym_RBRACE, + ACTIONS(4328), 2, + anon_sym_RPAREN, anon_sym_COMMA, [65182] = 3, - ACTIONS(3951), 1, - anon_sym_RPAREN, - ACTIONS(5029), 1, - anon_sym_SEMI, + ACTIONS(2566), 1, + anon_sym_LPAREN, + STATE(975), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65193] = 3, - ACTIONS(3738), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(381), 1, + STATE(987), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65204] = 3, - ACTIONS(3750), 1, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(993), 1, - sym_declaration_list, + STATE(333), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65215] = 3, - ACTIONS(4046), 1, - anon_sym_LBRACE, - STATE(375), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65226] = 3, - ACTIONS(2961), 1, + ACTIONS(4049), 1, anon_sym_COLON, - ACTIONS(3983), 1, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65237] = 3, - ACTIONS(5097), 1, - anon_sym_LBRACK, - ACTIONS(5099), 1, - anon_sym_BANG, + [65226] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65248] = 3, - ACTIONS(3983), 1, + ACTIONS(4695), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65235] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5101), 1, + ACTIONS(5183), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65259] = 3, - ACTIONS(3750), 1, + [65246] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(1008), 1, + STATE(995), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65270] = 3, - ACTIONS(3750), 1, + [65257] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(1010), 1, + STATE(997), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65281] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5103), 1, - anon_sym_SEMI, + [65268] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5185), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65292] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(85), 1, - sym_block, + [65279] = 3, + ACTIONS(5187), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65303] = 3, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(254), 1, - sym_declaration_list, + [65290] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65314] = 3, - ACTIONS(3987), 1, + ACTIONS(5191), 2, + sym_identifier, + sym_metavariable, + [65299] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5193), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65310] = 3, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(898), 1, + STATE(1015), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65325] = 3, - ACTIONS(4193), 1, + [65321] = 3, + ACTIONS(5195), 1, + anon_sym_LBRACK, + ACTIONS(5197), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65332] = 3, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1655), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65343] = 3, + ACTIONS(85), 1, anon_sym_PIPE, - ACTIONS(5105), 1, - anon_sym_EQ, + STATE(71), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65336] = 3, - ACTIONS(3909), 1, - anon_sym_COLON, - ACTIONS(3983), 1, - anon_sym_PLUS, + [65354] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65347] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5107), 1, - anon_sym_SEMI, + [65365] = 3, + ACTIONS(3800), 1, + anon_sym_LBRACE, + STATE(430), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65358] = 2, + [65376] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5199), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5109), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65367] = 3, - ACTIONS(3744), 1, + [65387] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(369), 1, + STATE(417), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65378] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(58), 1, - sym_closure_parameters, + [65398] = 3, + ACTIONS(4171), 1, + anon_sym_LBRACE, + STATE(390), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65389] = 3, - ACTIONS(3738), 1, + [65409] = 3, + ACTIONS(2638), 1, anon_sym_LBRACE, - STATE(411), 1, - sym_declaration_list, + STATE(1131), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65400] = 2, + [65420] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5111), 2, - sym_identifier, - sym_metavariable, - [65409] = 3, - ACTIONS(3945), 1, + ACTIONS(4624), 2, anon_sym_RBRACE, - ACTIONS(5029), 1, - anon_sym_SEMI, + anon_sym_COMMA, + [65429] = 3, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65420] = 3, - ACTIONS(3738), 1, + [65440] = 3, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, anon_sym_LBRACE, - STATE(467), 1, - sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65431] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5113), 1, - anon_sym_in, + [65451] = 3, + ACTIONS(2566), 1, + anon_sym_LPAREN, + STATE(830), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65442] = 3, - ACTIONS(2548), 1, + [65462] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1097), 1, - sym_field_initializer_list, + STATE(1084), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65453] = 3, - ACTIONS(3955), 1, - anon_sym_RBRACE, - ACTIONS(5029), 1, - anon_sym_SEMI, + [65473] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65464] = 3, - ACTIONS(3750), 1, + ACTIONS(5209), 2, + anon_sym_const, + sym_mutable_specifier, + [65482] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(954), 1, + STATE(1043), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65475] = 3, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(357), 1, - sym_declaration_list, + [65493] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5211), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65486] = 2, + [65504] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1052), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4333), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65495] = 3, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(2233), 1, - sym_lifetime, + [65515] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1137), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65506] = 3, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(412), 1, - sym_declaration_list, + [65526] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65517] = 3, - ACTIONS(5115), 1, - anon_sym_LPAREN, - ACTIONS(5117), 1, + ACTIONS(4593), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65535] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, + STATE(815), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65528] = 3, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(5121), 1, + [65546] = 3, + ACTIONS(586), 1, anon_sym_LBRACE, + STATE(229), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65539] = 3, - ACTIONS(284), 1, + [65557] = 3, + ACTIONS(888), 1, anon_sym_LBRACE, - STATE(1026), 1, + STATE(1478), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65550] = 2, + [65568] = 3, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1662), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4715), 2, - anon_sym_COMMA, - anon_sym_GT, - [65559] = 3, - ACTIONS(5123), 1, - sym_identifier, - ACTIONS(5125), 1, - sym_mutable_specifier, + [65579] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(61), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65570] = 3, - ACTIONS(284), 1, + [65590] = 3, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(1114), 1, - sym_block, + STATE(257), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65581] = 3, - ACTIONS(610), 1, + [65601] = 3, + ACTIONS(586), 1, anon_sym_LBRACE, - STATE(239), 1, + STATE(237), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65592] = 3, + [65612] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1084), 1, + STATE(1053), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65603] = 3, - ACTIONS(610), 1, + [65623] = 3, + ACTIONS(586), 1, anon_sym_LBRACE, - STATE(220), 1, + STATE(242), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65614] = 3, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1692), 1, - sym_parameters, + [65634] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(256), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65625] = 3, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(345), 1, - sym_field_declaration_list, + [65645] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5213), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65636] = 3, - ACTIONS(610), 1, + [65656] = 3, + ACTIONS(586), 1, anon_sym_LBRACE, STATE(221), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65647] = 3, - ACTIONS(3502), 1, - anon_sym_COLON_COLON, - ACTIONS(5067), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65658] = 3, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1661), 1, - sym_parameters, + [65667] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(360), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65669] = 3, - ACTIONS(5029), 1, + [65678] = 3, + ACTIONS(5133), 1, anon_sym_SEMI, - ACTIONS(5127), 1, + ACTIONS(5215), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65680] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5129), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65691] = 2, + [65689] = 3, + ACTIONS(5217), 1, + anon_sym_SEMI, + ACTIONS(5219), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5131), 2, - sym_float_literal, - sym_integer_literal, [65700] = 3, - ACTIONS(5029), 1, - anon_sym_SEMI, ACTIONS(5133), 1, + anon_sym_SEMI, + ACTIONS(5221), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65711] = 3, - ACTIONS(5135), 1, - anon_sym_SEMI, - ACTIONS(5137), 1, - anon_sym_as, + [65711] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65722] = 3, - ACTIONS(5029), 1, - anon_sym_SEMI, - ACTIONS(5139), 1, - anon_sym_RPAREN, + ACTIONS(4503), 2, + anon_sym_COMMA, + anon_sym_GT, + [65720] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65733] = 2, + ACTIONS(5223), 2, + sym_float_literal, + sym_integer_literal, + [65729] = 3, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1677), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4210), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65742] = 3, - ACTIONS(5141), 1, - anon_sym_LT, - STATE(719), 1, - sym_type_parameters, + [65740] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65753] = 3, - ACTIONS(5029), 1, - anon_sym_SEMI, - ACTIONS(5143), 1, + ACTIONS(4262), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [65749] = 3, + ACTIONS(3590), 1, + anon_sym_COLON_COLON, + ACTIONS(5225), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65764] = 3, - ACTIONS(3359), 1, + [65760] = 3, + ACTIONS(3425), 1, anon_sym_LPAREN, - STATE(1679), 1, + STATE(1643), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65775] = 3, - ACTIONS(3724), 1, - anon_sym_LT, - STATE(713), 1, - sym_type_parameters, + [65771] = 3, + ACTIONS(3588), 1, + anon_sym_COLON_COLON, + ACTIONS(5225), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65786] = 3, - ACTIONS(3720), 1, - anon_sym_LBRACE, - STATE(952), 1, - sym_field_declaration_list, + [65782] = 3, + ACTIONS(5133), 1, + anon_sym_SEMI, + ACTIONS(5227), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65797] = 3, - ACTIONS(4193), 1, + [65793] = 3, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(5145), 1, + ACTIONS(5229), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65808] = 3, - ACTIONS(5029), 1, + [65804] = 3, + ACTIONS(5231), 1, + sym_identifier, + ACTIONS(5233), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65815] = 3, + ACTIONS(5133), 1, anon_sym_SEMI, - ACTIONS(5147), 1, - anon_sym_RBRACE, + ACTIONS(5235), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65819] = 2, + [65826] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5149), 2, + ACTIONS(5237), 2, anon_sym_const, sym_mutable_specifier, - [65828] = 3, - ACTIONS(3359), 1, + [65835] = 3, + ACTIONS(3425), 1, anon_sym_LPAREN, - STATE(1364), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65839] = 3, - ACTIONS(3436), 1, + [65846] = 3, + ACTIONS(3538), 1, anon_sym_COLON_COLON, - ACTIONS(3562), 1, + ACTIONS(3654), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65850] = 3, - ACTIONS(610), 1, + [65857] = 3, + ACTIONS(5133), 1, + anon_sym_SEMI, + ACTIONS(5239), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65868] = 3, + ACTIONS(586), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(226), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65861] = 3, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1703), 1, - sym_parameters, + [65879] = 3, + ACTIONS(5133), 1, + anon_sym_SEMI, + ACTIONS(5241), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65872] = 3, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(1924), 1, - sym_trait_bounds, + [65890] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65901] = 3, + ACTIONS(5245), 1, + anon_sym_SEMI, + ACTIONS(5247), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65883] = 3, - ACTIONS(4046), 1, + [65912] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5249), 2, + sym_identifier, + sym_metavariable, + [65921] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(309), 1, - sym_enum_variant_list, + STATE(457), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65894] = 3, - ACTIONS(4189), 1, + [65932] = 3, + ACTIONS(2906), 1, anon_sym_COLON, - ACTIONS(4193), 1, - anon_sym_PIPE, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65905] = 2, + [65943] = 3, + ACTIONS(3999), 1, + anon_sym_RPAREN, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4783), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65914] = 3, - ACTIONS(3750), 1, + [65954] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(964), 1, - sym_declaration_list, + STATE(129), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65925] = 3, - ACTIONS(3899), 1, - anon_sym_COLON_COLON, - ACTIONS(5151), 1, + [65965] = 3, + ACTIONS(4001), 1, anon_sym_RPAREN, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65936] = 3, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(5151), 1, + [65976] = 3, + ACTIONS(4009), 1, anon_sym_RPAREN, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65947] = 3, - ACTIONS(3720), 1, + [65987] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(970), 1, + STATE(454), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65958] = 3, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(286), 1, - sym_declaration_list, + [65998] = 3, + ACTIONS(2574), 1, + anon_sym_LT2, + STATE(1081), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65969] = 3, - ACTIONS(3738), 1, + [66009] = 3, + ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(288), 1, - sym_declaration_list, + STATE(447), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65980] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5153), 1, - anon_sym_SEMI, + [66020] = 3, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1703), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65991] = 3, - ACTIONS(3925), 1, - anon_sym_RPAREN, - ACTIONS(5029), 1, - anon_sym_SEMI, + [66031] = 3, + ACTIONS(2800), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66002] = 3, - ACTIONS(2484), 1, - anon_sym_LPAREN, - STATE(1006), 1, - sym_parameters, + [66042] = 3, + ACTIONS(2796), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66013] = 2, + [66053] = 3, + ACTIONS(4011), 1, + anon_sym_RBRACE, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4754), 2, - anon_sym_COMMA, - anon_sym_GT, - [66022] = 3, - ACTIONS(3923), 1, - anon_sym_RPAREN, - ACTIONS(5029), 1, - anon_sym_SEMI, + [66064] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66033] = 3, - ACTIONS(2492), 1, - anon_sym_LT2, - STATE(1027), 1, - sym_type_arguments, + ACTIONS(5094), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [66073] = 3, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(5251), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66044] = 3, - ACTIONS(3911), 1, - anon_sym_COLON_COLON, - ACTIONS(5151), 1, - anon_sym_RPAREN, + [66084] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5253), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66055] = 3, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, + [66095] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(436), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66066] = 3, - ACTIONS(3494), 1, - anon_sym_COLON_COLON, - ACTIONS(5157), 1, + [66106] = 3, + ACTIONS(4015), 1, anon_sym_RPAREN, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66077] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1089), 1, - sym_block, + [66117] = 3, + ACTIONS(4021), 1, + anon_sym_RBRACE, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66088] = 3, - ACTIONS(4706), 1, - sym_identifier, - ACTIONS(4710), 1, - sym_mutable_specifier, + [66128] = 3, + ACTIONS(2936), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66099] = 3, - ACTIONS(3987), 1, - anon_sym_LBRACE, - STATE(1009), 1, - sym_enum_variant_list, + [66139] = 3, + ACTIONS(4635), 1, + sym_identifier, + ACTIONS(4639), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66110] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(59), 1, - sym_closure_parameters, + [66150] = 3, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1671), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66121] = 2, + [66161] = 3, + ACTIONS(3800), 1, + anon_sym_LBRACE, + STATE(426), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2315), 2, - anon_sym_COMMA, - anon_sym_GT, - [66130] = 3, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(475), 1, - sym_declaration_list, + [66172] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5255), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66141] = 3, - ACTIONS(3359), 1, + [66183] = 3, + ACTIONS(3425), 1, anon_sym_LPAREN, - STATE(1645), 1, + STATE(1378), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66152] = 3, - ACTIONS(888), 1, + [66194] = 3, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(1435), 1, - sym_block, + STATE(421), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66163] = 3, - ACTIONS(610), 1, + [66205] = 3, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(238), 1, - sym_block, + STATE(418), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66174] = 3, - ACTIONS(5159), 1, - anon_sym_SEMI, - ACTIONS(5161), 1, - anon_sym_as, + [66216] = 3, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(737), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66185] = 2, + [66227] = 3, + ACTIONS(5257), 1, + anon_sym_LT, + STATE(710), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4622), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66194] = 2, + [66238] = 3, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(2017), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4271), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66203] = 3, - ACTIONS(284), 1, + [66249] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(1063), 1, - sym_block, + STATE(413), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66214] = 3, - ACTIONS(3488), 1, + [66260] = 3, + ACTIONS(3570), 1, anon_sym_BANG, - ACTIONS(5163), 1, + ACTIONS(5259), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66225] = 2, + [66271] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4062), 2, - anon_sym_RPAREN, + ACTIONS(2393), 2, anon_sym_COMMA, - [66234] = 3, - ACTIONS(2596), 1, + anon_sym_GT, + [66280] = 3, + ACTIONS(2720), 1, anon_sym_COLON_COLON, - ACTIONS(3878), 1, + ACTIONS(3932), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66245] = 2, + [66291] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5165), 2, + ACTIONS(5261), 2, anon_sym_const, sym_mutable_specifier, - [66254] = 2, + [66300] = 3, + ACTIONS(3995), 1, + anon_sym_COLON_COLON, + ACTIONS(5263), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5167), 2, - anon_sym_const, - sym_mutable_specifier, - [66263] = 3, - ACTIONS(5169), 1, + [66311] = 3, + ACTIONS(5265), 1, anon_sym_LPAREN, - ACTIONS(5171), 1, + ACTIONS(5267), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66274] = 3, - ACTIONS(5173), 1, - anon_sym_LPAREN, - ACTIONS(5175), 1, - anon_sym_LBRACE, + [66322] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66285] = 3, - ACTIONS(2484), 1, + ACTIONS(5269), 2, + sym_identifier, + sym_metavariable, + [66331] = 3, + ACTIONS(5271), 1, anon_sym_LPAREN, - STATE(857), 1, - sym_parameters, + ACTIONS(5273), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66296] = 2, + [66342] = 3, + ACTIONS(4171), 1, + anon_sym_LBRACE, + STATE(310), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4386), 2, - anon_sym_COMMA, - anon_sym_GT, - [66305] = 3, - ACTIONS(5177), 1, - anon_sym_SEMI, - ACTIONS(5179), 1, - anon_sym_as, + [66353] = 3, + ACTIONS(4039), 1, + anon_sym_COLON_COLON, + ACTIONS(5263), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66316] = 3, - ACTIONS(5029), 1, - anon_sym_SEMI, - ACTIONS(5181), 1, - anon_sym_RBRACE, + [66364] = 3, + ACTIONS(4043), 1, + anon_sym_COLON_COLON, + ACTIONS(5263), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66327] = 3, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1356), 1, - sym_parameters, + [66375] = 3, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(5275), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66338] = 2, + [66386] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4620), 2, + ACTIONS(4123), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [66347] = 2, + [66395] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5183), 2, + ACTIONS(5277), 2, anon_sym_RPAREN, anon_sym_COMMA, - [66356] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5185), 1, - anon_sym_GT, + [66404] = 3, + ACTIONS(5279), 1, + sym_identifier, + ACTIONS(5281), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66367] = 2, + [66415] = 3, + ACTIONS(4290), 1, + anon_sym_COLON, + ACTIONS(4294), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5187), 2, - sym_identifier, - sym_metavariable, - [66376] = 2, - ACTIONS(2604), 1, - anon_sym_COLON_COLON, + [66426] = 2, + ACTIONS(4288), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66384] = 2, - ACTIONS(5189), 1, - anon_sym_SEMI, + [66434] = 2, + ACTIONS(4762), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66392] = 2, - ACTIONS(5191), 1, - sym_identifier, + [66442] = 2, + ACTIONS(5283), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66400] = 2, - ACTIONS(5193), 1, - anon_sym_RPAREN, + [66450] = 2, + ACTIONS(5285), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66408] = 2, - ACTIONS(5195), 1, - anon_sym_SEMI, + [66458] = 2, + ACTIONS(2686), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66416] = 2, - ACTIONS(5197), 1, + [66466] = 2, + ACTIONS(5287), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66424] = 2, - ACTIONS(5199), 1, - sym_identifier, + [66474] = 2, + ACTIONS(2726), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66432] = 2, - ACTIONS(5201), 1, + [66482] = 2, + ACTIONS(5289), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66440] = 2, - ACTIONS(4167), 1, - anon_sym_RPAREN, + [66490] = 2, + ACTIONS(4818), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66448] = 2, - ACTIONS(5203), 1, + [66498] = 2, + ACTIONS(4874), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66456] = 2, - ACTIONS(5205), 1, + [66506] = 2, + ACTIONS(5291), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66464] = 2, - ACTIONS(5207), 1, - sym_identifier, + [66514] = 2, + ACTIONS(5293), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66472] = 2, - ACTIONS(5209), 1, - anon_sym_RBRACK, + [66522] = 2, + ACTIONS(4952), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66480] = 2, - ACTIONS(5211), 1, + [66530] = 2, + ACTIONS(5295), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66488] = 2, - ACTIONS(2377), 1, - anon_sym_PLUS, + [66538] = 2, + ACTIONS(5297), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66496] = 2, - ACTIONS(5213), 1, - sym_identifier, + [66546] = 2, + ACTIONS(5299), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66504] = 2, - ACTIONS(4695), 1, + [66554] = 2, + ACTIONS(5301), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66512] = 2, - ACTIONS(4660), 1, - anon_sym_GT, + [66562] = 2, + ACTIONS(5303), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66520] = 2, - ACTIONS(5215), 1, + [66570] = 2, + ACTIONS(5305), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66528] = 2, - ACTIONS(5217), 1, + [66578] = 2, + ACTIONS(5307), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66536] = 2, - ACTIONS(5219), 1, + [66586] = 2, + ACTIONS(5309), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66544] = 2, - ACTIONS(5221), 1, + [66594] = 2, + ACTIONS(5311), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66552] = 2, - ACTIONS(4697), 1, - sym_identifier, + [66602] = 2, + ACTIONS(5313), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66560] = 2, - ACTIONS(5223), 1, - sym_identifier, + [66610] = 2, + ACTIONS(5315), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66568] = 2, - ACTIONS(5225), 1, - sym_identifier, + [66618] = 2, + ACTIONS(5317), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66576] = 2, - ACTIONS(5227), 1, - anon_sym_LBRACK, + [66626] = 2, + ACTIONS(5319), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66584] = 2, - ACTIONS(3135), 1, + [66634] = 2, + ACTIONS(3223), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66592] = 2, - ACTIONS(5229), 1, + [66642] = 2, + ACTIONS(4664), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66600] = 2, - ACTIONS(3417), 1, + [66650] = 2, + ACTIONS(3499), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66608] = 2, - ACTIONS(5231), 1, - sym_identifier, + [66658] = 2, + ACTIONS(4280), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66616] = 2, - ACTIONS(5233), 1, - anon_sym_COLON_COLON, + [66666] = 2, + ACTIONS(5321), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66624] = 2, - ACTIONS(4771), 1, + [66674] = 2, + ACTIONS(4554), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66632] = 2, - ACTIONS(5235), 1, + [66682] = 2, + ACTIONS(5323), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66640] = 2, - ACTIONS(5237), 1, - anon_sym_SEMI, + [66690] = 2, + ACTIONS(5325), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66648] = 2, - ACTIONS(5239), 1, - anon_sym_EQ_GT, + [66698] = 2, + ACTIONS(5327), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66656] = 2, - ACTIONS(5241), 1, - sym_identifier, + [66706] = 2, + ACTIONS(5329), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66664] = 2, - ACTIONS(3115), 1, + [66714] = 2, + ACTIONS(3195), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66672] = 2, - ACTIONS(5243), 1, + [66722] = 2, + ACTIONS(5331), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66680] = 2, - ACTIONS(4637), 1, - sym_identifier, + [66730] = 2, + ACTIONS(4976), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66688] = 2, - ACTIONS(5245), 1, + [66738] = 2, + ACTIONS(5333), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66696] = 2, - ACTIONS(5247), 1, - sym_identifier, + [66746] = 2, + ACTIONS(5335), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66704] = 2, - ACTIONS(5249), 1, + [66754] = 2, + ACTIONS(5337), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66712] = 2, - ACTIONS(5251), 1, + [66762] = 2, + ACTIONS(5339), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66720] = 2, - ACTIONS(5253), 1, - anon_sym_RBRACE, + [66770] = 2, + ACTIONS(5341), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66728] = 2, - ACTIONS(5255), 1, + [66778] = 2, + ACTIONS(5343), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66736] = 2, - ACTIONS(5257), 1, + [66786] = 2, + ACTIONS(5345), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66744] = 2, - ACTIONS(5259), 1, - sym_self, + [66794] = 2, + ACTIONS(5347), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66752] = 2, - ACTIONS(5261), 1, - anon_sym_EQ_GT, + [66802] = 2, + ACTIONS(5349), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66760] = 2, - ACTIONS(5263), 1, - anon_sym_fn, + [66810] = 2, + ACTIONS(5351), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66768] = 2, - ACTIONS(5265), 1, + [66818] = 2, + ACTIONS(5353), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66776] = 2, - ACTIONS(5267), 1, + [66826] = 2, + ACTIONS(5355), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66784] = 2, - ACTIONS(5269), 1, + [66834] = 2, + ACTIONS(5357), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66792] = 2, - ACTIONS(5271), 1, + [66842] = 2, + ACTIONS(5359), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66800] = 2, - ACTIONS(5273), 1, + [66850] = 2, + ACTIONS(5361), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66808] = 2, - ACTIONS(5275), 1, + [66858] = 2, + ACTIONS(5363), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66816] = 2, - ACTIONS(5277), 1, + [66866] = 2, + ACTIONS(5365), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66824] = 2, - ACTIONS(5279), 1, - anon_sym_RBRACK, + [66874] = 2, + ACTIONS(5367), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66832] = 2, - ACTIONS(5281), 1, + [66882] = 2, + ACTIONS(4566), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66840] = 2, - ACTIONS(5283), 1, - anon_sym_RBRACK, + [66890] = 2, + ACTIONS(5369), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66848] = 2, - ACTIONS(4723), 1, - anon_sym_RBRACE, + [66898] = 2, + ACTIONS(5371), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66856] = 2, - ACTIONS(5285), 1, + [66906] = 2, + ACTIONS(5373), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66864] = 2, - ACTIONS(4727), 1, + [66914] = 2, + ACTIONS(3187), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66872] = 2, - ACTIONS(5287), 1, - sym_identifier, + [66922] = 2, + ACTIONS(4604), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66880] = 2, - ACTIONS(5289), 1, - sym_identifier, + [66930] = 2, + ACTIONS(5375), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66888] = 2, - ACTIONS(4014), 1, + [66938] = 2, + ACTIONS(5377), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66896] = 2, - ACTIONS(2596), 1, + [66946] = 2, + ACTIONS(2720), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66904] = 2, - ACTIONS(5291), 1, + [66954] = 2, + ACTIONS(4401), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66912] = 2, - ACTIONS(5163), 1, + [66962] = 2, + ACTIONS(5259), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66920] = 2, - ACTIONS(5293), 1, - anon_sym_COLON, + [66970] = 2, + ACTIONS(5379), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66928] = 2, - ACTIONS(5295), 1, + [66978] = 2, + ACTIONS(5381), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66936] = 2, - ACTIONS(5297), 1, + [66986] = 2, + ACTIONS(5383), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66944] = 2, - ACTIONS(5299), 1, - anon_sym_RBRACK, + [66994] = 2, + ACTIONS(4021), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66952] = 2, - ACTIONS(5301), 1, + [67002] = 2, + ACTIONS(4205), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66960] = 2, - ACTIONS(5303), 1, + [67010] = 2, + ACTIONS(5385), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66968] = 2, - ACTIONS(5305), 1, - sym_identifier, + [67018] = 2, + ACTIONS(5387), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66976] = 2, - ACTIONS(5307), 1, - sym_identifier, + [67026] = 2, + ACTIONS(2453), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66984] = 2, - ACTIONS(4741), 1, - sym_identifier, + [67034] = 2, + ACTIONS(5389), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66992] = 2, - ACTIONS(5309), 1, - anon_sym_COLON_COLON, + [67042] = 2, + ACTIONS(5391), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67000] = 2, - ACTIONS(5311), 1, + [67050] = 2, + ACTIONS(5393), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67008] = 2, - ACTIONS(5313), 1, + [67058] = 2, + ACTIONS(5395), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67016] = 2, - ACTIONS(5315), 1, + [67066] = 2, + ACTIONS(5397), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67024] = 2, - ACTIONS(2405), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67032] = 2, - ACTIONS(5317), 1, - sym_identifier, + [67074] = 2, + ACTIONS(5399), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67040] = 2, - ACTIONS(5319), 1, + [67082] = 2, + ACTIONS(4011), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67048] = 2, - ACTIONS(5321), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67056] = 2, - ACTIONS(5323), 1, - anon_sym_SEMI, + [67090] = 2, + ACTIONS(5401), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67064] = 2, - ACTIONS(5325), 1, + [67098] = 2, + ACTIONS(5403), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67072] = 2, - ACTIONS(5327), 1, + [67106] = 2, + ACTIONS(3219), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67080] = 2, - ACTIONS(552), 1, - anon_sym_RBRACK, + [67114] = 2, + ACTIONS(5405), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67088] = 2, - ACTIONS(5329), 1, - anon_sym_SEMI, + [67122] = 2, + ACTIONS(554), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67096] = 2, - ACTIONS(5331), 1, - sym_identifier, + [67130] = 2, + ACTIONS(2397), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67104] = 2, - ACTIONS(5333), 1, - anon_sym_RBRACE, + [67138] = 2, + ACTIONS(5407), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67112] = 2, - ACTIONS(5335), 1, - anon_sym_COLON, + [67146] = 2, + ACTIONS(5239), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67120] = 2, - ACTIONS(5337), 1, - anon_sym_fn, + [67154] = 2, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67128] = 2, - ACTIONS(5339), 1, - anon_sym_COLON, + [67162] = 2, + ACTIONS(5409), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67136] = 2, - ACTIONS(5341), 1, - anon_sym_COLON_COLON, + [67170] = 2, + ACTIONS(5411), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67144] = 2, - ACTIONS(5343), 1, - anon_sym_RBRACK, + [67178] = 2, + ACTIONS(5413), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67152] = 2, - ACTIONS(5345), 1, + [67186] = 2, + ACTIONS(5415), 1, anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67160] = 2, - ACTIONS(5347), 1, - anon_sym_EQ_GT, + [67194] = 2, + ACTIONS(5417), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67168] = 2, - ACTIONS(4561), 1, - anon_sym_RBRACE, + [67202] = 2, + ACTIONS(5227), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67176] = 2, - ACTIONS(5349), 1, + [67210] = 2, + ACTIONS(5419), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67184] = 2, - ACTIONS(5351), 1, - anon_sym_SEMI, + [67218] = 2, + ACTIONS(5421), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67192] = 2, - ACTIONS(5353), 1, + [67226] = 2, + ACTIONS(4584), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67200] = 2, - ACTIONS(4800), 1, + [67234] = 2, + ACTIONS(5423), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67208] = 2, - ACTIONS(5355), 1, + [67242] = 2, + ACTIONS(5425), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67216] = 2, - ACTIONS(3494), 1, + [67250] = 2, + ACTIONS(5427), 1, + sym_self, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67258] = 2, + ACTIONS(5429), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67224] = 2, - ACTIONS(3440), 1, + [67266] = 2, + ACTIONS(3582), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67232] = 2, - ACTIONS(5357), 1, - sym_identifier, + [67274] = 2, + ACTIONS(4127), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67240] = 2, - ACTIONS(5359), 1, - anon_sym_EQ_GT, + [67282] = 2, + ACTIONS(5431), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67248] = 2, - ACTIONS(4066), 1, - anon_sym_COLON_COLON, + [67290] = 2, + ACTIONS(4629), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67256] = 2, - ACTIONS(4313), 1, - anon_sym_RPAREN, + [67298] = 2, + ACTIONS(5433), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67264] = 2, - ACTIONS(5361), 1, - anon_sym_RBRACE, + [67306] = 2, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67272] = 2, - ACTIONS(5363), 1, - anon_sym_RBRACK, + [67314] = 2, + ACTIONS(4474), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67280] = 2, - ACTIONS(4325), 1, - anon_sym_RBRACK, + [67322] = 2, + ACTIONS(5437), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67288] = 2, - ACTIONS(4814), 1, - anon_sym_RBRACE, + [67330] = 2, + ACTIONS(5439), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67296] = 2, - ACTIONS(5365), 1, - anon_sym_COLON, + [67338] = 2, + ACTIONS(5441), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67304] = 2, - ACTIONS(5147), 1, - anon_sym_SEMI, + [67346] = 2, + ACTIONS(5443), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67312] = 2, - ACTIONS(4689), 1, - sym_identifier, + [67354] = 2, + ACTIONS(5445), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67320] = 2, - ACTIONS(4671), 1, - sym_identifier, + [67362] = 2, + ACTIONS(5447), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67328] = 2, - ACTIONS(5367), 1, + [67370] = 2, + ACTIONS(5449), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67336] = 2, - ACTIONS(5181), 1, + [67378] = 2, + ACTIONS(5451), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67344] = 2, - ACTIONS(4531), 1, - anon_sym_RBRACE, + [67386] = 2, + ACTIONS(5453), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67352] = 2, - ACTIONS(5369), 1, - anon_sym_COLON, + [67394] = 2, + ACTIONS(5455), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67360] = 2, - ACTIONS(5371), 1, + [67402] = 2, + ACTIONS(4454), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67410] = 2, + ACTIONS(5457), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67368] = 2, - ACTIONS(5373), 1, + [67418] = 2, + ACTIONS(5459), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67376] = 2, - ACTIONS(5375), 1, + [67426] = 2, + ACTIONS(5461), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67384] = 2, - ACTIONS(5377), 1, - anon_sym_RPAREN, + [67434] = 2, + ACTIONS(5463), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67392] = 2, - ACTIONS(5031), 1, - anon_sym_SEMI, + [67442] = 2, + ACTIONS(4964), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67400] = 2, - ACTIONS(5379), 1, - anon_sym_LPAREN, + [67450] = 2, + ACTIONS(5465), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67408] = 2, - ACTIONS(5381), 1, + [67458] = 2, + ACTIONS(5467), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67416] = 2, - ACTIONS(368), 1, + [67466] = 2, + ACTIONS(374), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67424] = 2, - ACTIONS(5383), 1, + [67474] = 2, + ACTIONS(5469), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67432] = 2, - ACTIONS(2636), 1, - anon_sym_COLON_COLON, + [67482] = 2, + ACTIONS(5471), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67440] = 2, - ACTIONS(4246), 1, + [67490] = 2, + ACTIONS(5473), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67448] = 2, - ACTIONS(5385), 1, - anon_sym_SEMI, + [67498] = 2, + ACTIONS(4610), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67456] = 2, - ACTIONS(5387), 1, - anon_sym_COLON, + [67506] = 2, + ACTIONS(5475), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67464] = 2, - ACTIONS(3955), 1, - anon_sym_SEMI, + [67514] = 2, + ACTIONS(2467), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67472] = 2, - ACTIONS(4840), 1, - sym_identifier, + [67522] = 2, + ACTIONS(5477), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67480] = 2, - ACTIONS(5389), 1, + [67530] = 2, + ACTIONS(5479), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67488] = 2, - ACTIONS(2347), 1, - anon_sym_EQ_GT, + [67538] = 2, + ACTIONS(5481), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67496] = 2, - ACTIONS(5391), 1, - sym_identifier, + [67546] = 2, + ACTIONS(5483), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67504] = 2, - ACTIONS(3945), 1, - anon_sym_SEMI, + [67554] = 2, + ACTIONS(5485), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67512] = 2, - ACTIONS(3907), 1, + [67562] = 2, + ACTIONS(4039), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67520] = 2, - ACTIONS(5393), 1, - sym_identifier, + [67570] = 2, + ACTIONS(5487), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67528] = 2, - ACTIONS(5395), 1, + [67578] = 2, + ACTIONS(5489), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67536] = 2, - ACTIONS(2598), 1, + [67586] = 2, + ACTIONS(2734), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67544] = 2, - ACTIONS(5397), 1, + [67594] = 2, + ACTIONS(5491), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67552] = 2, - ACTIONS(3371), 1, + [67602] = 2, + ACTIONS(3453), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67560] = 2, - ACTIONS(5399), 1, + [67610] = 2, + ACTIONS(4772), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67568] = 2, - ACTIONS(5401), 1, + [67618] = 2, + ACTIONS(5493), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67576] = 2, - ACTIONS(2730), 1, + [67626] = 2, + ACTIONS(2774), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67584] = 2, - ACTIONS(5403), 1, - anon_sym_SEMI, + [67634] = 2, + ACTIONS(4766), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67592] = 2, - ACTIONS(3137), 1, - anon_sym_RPAREN, + [67642] = 2, + ACTIONS(4608), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67600] = 2, - ACTIONS(5405), 1, + [67650] = 2, + ACTIONS(5495), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67608] = 2, - ACTIONS(5407), 1, + [67658] = 2, + ACTIONS(4776), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67616] = 2, - ACTIONS(5409), 1, + [67666] = 2, + ACTIONS(5497), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67624] = 2, - ACTIONS(4862), 1, - anon_sym_RBRACE, + [67674] = 2, + ACTIONS(5499), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67632] = 2, - ACTIONS(5411), 1, - anon_sym_SEMI, + [67682] = 2, + ACTIONS(5501), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67640] = 2, - ACTIONS(5413), 1, + [67690] = 2, + ACTIONS(5503), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67648] = 2, - ACTIONS(5415), 1, - anon_sym_SEMI, + [67698] = 2, + ACTIONS(5505), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67656] = 2, - ACTIONS(4224), 1, - anon_sym_RPAREN, + [67706] = 2, + ACTIONS(2413), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67664] = 2, - ACTIONS(4155), 1, + [67714] = 2, + ACTIONS(4067), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67672] = 2, - ACTIONS(5417), 1, + [67722] = 2, + ACTIONS(5507), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67680] = 2, - ACTIONS(3963), 1, + [67730] = 2, + ACTIONS(5509), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67688] = 2, - ACTIONS(4072), 1, + [67738] = 2, + ACTIONS(4167), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67696] = 2, - ACTIONS(5419), 1, + [67746] = 2, + ACTIONS(5511), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67704] = 2, - ACTIONS(5421), 1, + [67754] = 2, + ACTIONS(5513), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67712] = 2, - ACTIONS(4040), 1, + [67762] = 2, + ACTIONS(4217), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67720] = 2, - ACTIONS(5423), 1, + [67770] = 2, + ACTIONS(5515), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67728] = 2, - ACTIONS(5425), 1, - anon_sym_COLON, + [67778] = 2, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67736] = 2, - ACTIONS(5427), 1, + [67786] = 2, + ACTIONS(4816), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67744] = 2, - ACTIONS(5429), 1, + [67794] = 2, + ACTIONS(5517), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67752] = 2, - ACTIONS(5431), 1, - anon_sym_RPAREN, + [67802] = 2, + ACTIONS(5519), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67760] = 2, - ACTIONS(5433), 1, + [67810] = 2, + ACTIONS(5521), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67768] = 2, - ACTIONS(5435), 1, + [67818] = 2, + ACTIONS(5523), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67776] = 2, - ACTIONS(5437), 1, + [67826] = 2, + ACTIONS(5525), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67784] = 2, - ACTIONS(4924), 1, - anon_sym_RPAREN, + [67834] = 2, + ACTIONS(5527), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67792] = 2, - ACTIONS(5439), 1, - anon_sym_EQ_GT, + [67842] = 2, + ACTIONS(5529), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67800] = 2, - ACTIONS(5441), 1, - anon_sym_RBRACE, + [67850] = 2, + ACTIONS(5531), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67808] = 2, - ACTIONS(5443), 1, + [67858] = 2, + ACTIONS(5533), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67816] = 2, - ACTIONS(5445), 1, + [67866] = 2, + ACTIONS(5535), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67824] = 2, - ACTIONS(5447), 1, + [67874] = 2, + ACTIONS(5537), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67832] = 2, - ACTIONS(5449), 1, + [67882] = 2, + ACTIONS(5539), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67840] = 2, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, + [67890] = 2, + ACTIONS(5541), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67848] = 2, - ACTIONS(5029), 1, + [67898] = 2, + ACTIONS(5543), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67856] = 2, - ACTIONS(5451), 1, - anon_sym_SEMI, + [67906] = 2, + ACTIONS(5545), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67864] = 2, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, + [67914] = 2, + ACTIONS(5547), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67872] = 2, - ACTIONS(3967), 1, + [67922] = 2, + ACTIONS(5549), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67880] = 2, - ACTIONS(5453), 1, + [67930] = 2, + ACTIONS(3973), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67888] = 2, - ACTIONS(5455), 1, + [67938] = 2, + ACTIONS(5551), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67896] = 2, - ACTIONS(5457), 1, - anon_sym_SEMI, + [67946] = 2, + ACTIONS(5553), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67904] = 2, - ACTIONS(5459), 1, - anon_sym_EQ, + [67954] = 2, + ACTIONS(4019), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67912] = 2, - ACTIONS(2311), 1, - anon_sym_EQ_GT, + [67962] = 2, + ACTIONS(5555), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67920] = 2, - ACTIONS(4952), 1, - anon_sym_RBRACE, + [67970] = 2, + ACTIONS(5557), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67928] = 2, - ACTIONS(5461), 1, + [67978] = 2, + ACTIONS(5559), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67936] = 2, - ACTIONS(5463), 1, + [67986] = 2, + ACTIONS(5561), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67944] = 2, - ACTIONS(5465), 1, + [67994] = 2, + ACTIONS(5563), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67952] = 2, - ACTIONS(5467), 1, + [68002] = 2, + ACTIONS(5565), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67960] = 2, - ACTIONS(5469), 1, - anon_sym_SEMI, + [68010] = 2, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67968] = 2, - ACTIONS(5471), 1, + [68018] = 2, + ACTIONS(5567), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67976] = 2, - ACTIONS(5473), 1, + [68026] = 2, + ACTIONS(5569), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67984] = 2, - ACTIONS(5475), 1, + [68034] = 2, + ACTIONS(5571), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67992] = 2, - ACTIONS(5477), 1, - anon_sym_SEMI, + [68042] = 2, + ACTIONS(4944), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68000] = 2, - ACTIONS(5479), 1, + [68050] = 2, + ACTIONS(5573), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68008] = 2, - ACTIONS(5481), 1, - anon_sym_RBRACK, + [68058] = 2, + ACTIONS(5575), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68016] = 2, - ACTIONS(5483), 1, + [68066] = 2, + ACTIONS(5577), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68024] = 2, - ACTIONS(5485), 1, + [68074] = 2, + ACTIONS(5579), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68032] = 2, - ACTIONS(5487), 1, - anon_sym_SEMI, + [68082] = 2, + ACTIONS(4308), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68040] = 2, - ACTIONS(5489), 1, - anon_sym_RBRACE, + [68090] = 2, + ACTIONS(5581), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68048] = 2, - ACTIONS(5491), 1, - sym_identifier, + [68098] = 2, + ACTIONS(5583), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68056] = 2, - ACTIONS(5493), 1, - sym_identifier, + [68106] = 2, + ACTIONS(5585), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68064] = 2, - ACTIONS(4187), 1, - anon_sym_RPAREN, + [68114] = 2, + ACTIONS(5587), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68072] = 2, - ACTIONS(5495), 1, + [68122] = 2, + ACTIONS(5589), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68080] = 2, - ACTIONS(5497), 1, + [68130] = 2, + ACTIONS(5591), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68088] = 2, - ACTIONS(3395), 1, + [68138] = 2, + ACTIONS(3477), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68096] = 2, - ACTIONS(5499), 1, + [68146] = 2, + ACTIONS(5593), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68104] = 2, - ACTIONS(5002), 1, - anon_sym_RBRACE, + [68154] = 2, + ACTIONS(5251), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68112] = 2, - ACTIONS(5501), 1, + [68162] = 2, + ACTIONS(5595), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68120] = 2, - ACTIONS(4442), 1, + [68170] = 2, + ACTIONS(5038), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68128] = 2, - ACTIONS(5503), 1, - sym_identifier, + [68178] = 2, + ACTIONS(5597), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68136] = 2, - ACTIONS(3113), 1, - sym_identifier, + [68186] = 2, + ACTIONS(5599), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68144] = 2, - ACTIONS(5505), 1, + [68194] = 2, + ACTIONS(5601), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68152] = 2, - ACTIONS(5507), 1, + [68202] = 2, + ACTIONS(5603), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68160] = 2, - ACTIONS(5509), 1, + [68210] = 2, + ACTIONS(5605), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68168] = 2, - ACTIONS(5511), 1, - anon_sym_fn, + [68218] = 2, + ACTIONS(5607), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68176] = 2, - ACTIONS(5513), 1, + [68226] = 2, + ACTIONS(5609), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68184] = 2, - ACTIONS(5515), 1, + [68234] = 2, + ACTIONS(5611), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68192] = 2, - ACTIONS(5517), 1, + [68242] = 2, + ACTIONS(5137), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68200] = 2, - ACTIONS(5519), 1, - anon_sym_COLON, + [68250] = 2, + ACTIONS(5135), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68208] = 2, - ACTIONS(5521), 1, + [68258] = 2, + ACTIONS(5613), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68216] = 2, - ACTIONS(5033), 1, - anon_sym_SEMI, + [68266] = 2, + ACTIONS(5615), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68224] = 2, - ACTIONS(5523), 1, - sym_identifier, + [68274] = 2, + ACTIONS(5617), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68232] = 2, - ACTIONS(5525), 1, + [68282] = 2, + ACTIONS(5619), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -125190,1922 +126685,1926 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(628)] = 0, - [SMALL_STATE(629)] = 129, - [SMALL_STATE(630)] = 258, - [SMALL_STATE(631)] = 387, - [SMALL_STATE(632)] = 516, - [SMALL_STATE(633)] = 645, - [SMALL_STATE(634)] = 776, - [SMALL_STATE(635)] = 905, - [SMALL_STATE(636)] = 1034, - [SMALL_STATE(637)] = 1163, - [SMALL_STATE(638)] = 1292, - [SMALL_STATE(639)] = 1421, - [SMALL_STATE(640)] = 1550, - [SMALL_STATE(641)] = 1679, - [SMALL_STATE(642)] = 1808, - [SMALL_STATE(643)] = 1937, - [SMALL_STATE(644)] = 2066, - [SMALL_STATE(645)] = 2195, - [SMALL_STATE(646)] = 2324, - [SMALL_STATE(647)] = 2453, - [SMALL_STATE(648)] = 2582, - [SMALL_STATE(649)] = 2711, - [SMALL_STATE(650)] = 2840, - [SMALL_STATE(651)] = 2969, - [SMALL_STATE(652)] = 3098, - [SMALL_STATE(653)] = 3227, - [SMALL_STATE(654)] = 3356, - [SMALL_STATE(655)] = 3485, - [SMALL_STATE(656)] = 3614, - [SMALL_STATE(657)] = 3743, - [SMALL_STATE(658)] = 3872, - [SMALL_STATE(659)] = 4001, - [SMALL_STATE(660)] = 4130, - [SMALL_STATE(661)] = 4259, - [SMALL_STATE(662)] = 4388, - [SMALL_STATE(663)] = 4517, - [SMALL_STATE(664)] = 4646, - [SMALL_STATE(665)] = 4717, - [SMALL_STATE(666)] = 4846, - [SMALL_STATE(667)] = 4975, - [SMALL_STATE(668)] = 5104, - [SMALL_STATE(669)] = 5233, - [SMALL_STATE(670)] = 5362, - [SMALL_STATE(671)] = 5491, - [SMALL_STATE(672)] = 5620, - [SMALL_STATE(673)] = 5749, - [SMALL_STATE(674)] = 5878, - [SMALL_STATE(675)] = 6007, - [SMALL_STATE(676)] = 6136, - [SMALL_STATE(677)] = 6265, - [SMALL_STATE(678)] = 6394, - [SMALL_STATE(679)] = 6523, - [SMALL_STATE(680)] = 6652, - [SMALL_STATE(681)] = 6781, - [SMALL_STATE(682)] = 6910, - [SMALL_STATE(683)] = 7039, - [SMALL_STATE(684)] = 7168, - [SMALL_STATE(685)] = 7297, - [SMALL_STATE(686)] = 7426, - [SMALL_STATE(687)] = 7555, - [SMALL_STATE(688)] = 7684, - [SMALL_STATE(689)] = 7813, - [SMALL_STATE(690)] = 7942, - [SMALL_STATE(691)] = 8071, - [SMALL_STATE(692)] = 8200, - [SMALL_STATE(693)] = 8329, - [SMALL_STATE(694)] = 8458, - [SMALL_STATE(695)] = 8587, - [SMALL_STATE(696)] = 8716, - [SMALL_STATE(697)] = 8845, - [SMALL_STATE(698)] = 8974, - [SMALL_STATE(699)] = 9103, - [SMALL_STATE(700)] = 9232, - [SMALL_STATE(701)] = 9361, - [SMALL_STATE(702)] = 9490, - [SMALL_STATE(703)] = 9619, - [SMALL_STATE(704)] = 9748, - [SMALL_STATE(705)] = 9877, - [SMALL_STATE(706)] = 10006, - [SMALL_STATE(707)] = 10135, - [SMALL_STATE(708)] = 10264, - [SMALL_STATE(709)] = 10393, - [SMALL_STATE(710)] = 10522, - [SMALL_STATE(711)] = 10651, - [SMALL_STATE(712)] = 10780, - [SMALL_STATE(713)] = 10909, - [SMALL_STATE(714)] = 11038, - [SMALL_STATE(715)] = 11167, - [SMALL_STATE(716)] = 11296, - [SMALL_STATE(717)] = 11425, - [SMALL_STATE(718)] = 11554, - [SMALL_STATE(719)] = 11683, - [SMALL_STATE(720)] = 11812, - [SMALL_STATE(721)] = 11941, - [SMALL_STATE(722)] = 12070, - [SMALL_STATE(723)] = 12199, - [SMALL_STATE(724)] = 12328, - [SMALL_STATE(725)] = 12457, - [SMALL_STATE(726)] = 12586, - [SMALL_STATE(727)] = 12715, - [SMALL_STATE(728)] = 12844, - [SMALL_STATE(729)] = 12973, - [SMALL_STATE(730)] = 13102, - [SMALL_STATE(731)] = 13231, - [SMALL_STATE(732)] = 13360, - [SMALL_STATE(733)] = 13489, - [SMALL_STATE(734)] = 13618, - [SMALL_STATE(735)] = 13747, - [SMALL_STATE(736)] = 13876, - [SMALL_STATE(737)] = 14005, - [SMALL_STATE(738)] = 14134, - [SMALL_STATE(739)] = 14200, - [SMALL_STATE(740)] = 14266, - [SMALL_STATE(741)] = 14332, - [SMALL_STATE(742)] = 14398, - [SMALL_STATE(743)] = 14460, - [SMALL_STATE(744)] = 14530, - [SMALL_STATE(745)] = 14597, - [SMALL_STATE(746)] = 14664, - [SMALL_STATE(747)] = 14720, - [SMALL_STATE(748)] = 14784, - [SMALL_STATE(749)] = 14848, - [SMALL_STATE(750)] = 14908, - [SMALL_STATE(751)] = 14968, - [SMALL_STATE(752)] = 15028, - [SMALL_STATE(753)] = 15090, - [SMALL_STATE(754)] = 15154, - [SMALL_STATE(755)] = 15210, - [SMALL_STATE(756)] = 15266, - [SMALL_STATE(757)] = 15330, - [SMALL_STATE(758)] = 15390, - [SMALL_STATE(759)] = 15446, - [SMALL_STATE(760)] = 15502, - [SMALL_STATE(761)] = 15561, - [SMALL_STATE(762)] = 15618, - [SMALL_STATE(763)] = 15675, - [SMALL_STATE(764)] = 15734, - [SMALL_STATE(765)] = 15791, - [SMALL_STATE(766)] = 15850, - [SMALL_STATE(767)] = 15905, - [SMALL_STATE(768)] = 15962, - [SMALL_STATE(769)] = 16016, - [SMALL_STATE(770)] = 16070, - [SMALL_STATE(771)] = 16124, - [SMALL_STATE(772)] = 16178, - [SMALL_STATE(773)] = 16236, - [SMALL_STATE(774)] = 16292, - [SMALL_STATE(775)] = 16346, - [SMALL_STATE(776)] = 16400, - [SMALL_STATE(777)] = 16454, - [SMALL_STATE(778)] = 16508, - [SMALL_STATE(779)] = 16562, - [SMALL_STATE(780)] = 16616, - [SMALL_STATE(781)] = 16670, - [SMALL_STATE(782)] = 16724, - [SMALL_STATE(783)] = 16778, - [SMALL_STATE(784)] = 16832, - [SMALL_STATE(785)] = 16886, - [SMALL_STATE(786)] = 16940, - [SMALL_STATE(787)] = 16994, - [SMALL_STATE(788)] = 17048, - [SMALL_STATE(789)] = 17102, - [SMALL_STATE(790)] = 17156, - [SMALL_STATE(791)] = 17214, - [SMALL_STATE(792)] = 17268, - [SMALL_STATE(793)] = 17322, - [SMALL_STATE(794)] = 17376, - [SMALL_STATE(795)] = 17430, - [SMALL_STATE(796)] = 17484, - [SMALL_STATE(797)] = 17538, - [SMALL_STATE(798)] = 17592, - [SMALL_STATE(799)] = 17646, - [SMALL_STATE(800)] = 17704, - [SMALL_STATE(801)] = 17758, - [SMALL_STATE(802)] = 17812, - [SMALL_STATE(803)] = 17866, - [SMALL_STATE(804)] = 17920, - [SMALL_STATE(805)] = 17976, - [SMALL_STATE(806)] = 18030, - [SMALL_STATE(807)] = 18086, - [SMALL_STATE(808)] = 18140, - [SMALL_STATE(809)] = 18196, - [SMALL_STATE(810)] = 18250, - [SMALL_STATE(811)] = 18304, - [SMALL_STATE(812)] = 18358, - [SMALL_STATE(813)] = 18412, - [SMALL_STATE(814)] = 18466, - [SMALL_STATE(815)] = 18520, - [SMALL_STATE(816)] = 18574, - [SMALL_STATE(817)] = 18628, - [SMALL_STATE(818)] = 18682, - [SMALL_STATE(819)] = 18736, - [SMALL_STATE(820)] = 18790, - [SMALL_STATE(821)] = 18844, - [SMALL_STATE(822)] = 18898, - [SMALL_STATE(823)] = 18952, - [SMALL_STATE(824)] = 19006, - [SMALL_STATE(825)] = 19060, - [SMALL_STATE(826)] = 19114, - [SMALL_STATE(827)] = 19168, - [SMALL_STATE(828)] = 19222, - [SMALL_STATE(829)] = 19276, - [SMALL_STATE(830)] = 19330, - [SMALL_STATE(831)] = 19384, - [SMALL_STATE(832)] = 19440, - [SMALL_STATE(833)] = 19494, - [SMALL_STATE(834)] = 19548, - [SMALL_STATE(835)] = 19602, - [SMALL_STATE(836)] = 19656, - [SMALL_STATE(837)] = 19710, - [SMALL_STATE(838)] = 19764, - [SMALL_STATE(839)] = 19818, - [SMALL_STATE(840)] = 19872, - [SMALL_STATE(841)] = 19926, - [SMALL_STATE(842)] = 19980, - [SMALL_STATE(843)] = 20034, - [SMALL_STATE(844)] = 20088, - [SMALL_STATE(845)] = 20142, - [SMALL_STATE(846)] = 20196, - [SMALL_STATE(847)] = 20250, - [SMALL_STATE(848)] = 20304, - [SMALL_STATE(849)] = 20358, - [SMALL_STATE(850)] = 20412, - [SMALL_STATE(851)] = 20466, - [SMALL_STATE(852)] = 20520, - [SMALL_STATE(853)] = 20574, - [SMALL_STATE(854)] = 20628, - [SMALL_STATE(855)] = 20682, - [SMALL_STATE(856)] = 20736, - [SMALL_STATE(857)] = 20790, - [SMALL_STATE(858)] = 20846, - [SMALL_STATE(859)] = 20900, - [SMALL_STATE(860)] = 20954, - [SMALL_STATE(861)] = 21008, - [SMALL_STATE(862)] = 21062, - [SMALL_STATE(863)] = 21116, - [SMALL_STATE(864)] = 21170, - [SMALL_STATE(865)] = 21224, - [SMALL_STATE(866)] = 21280, - [SMALL_STATE(867)] = 21336, - [SMALL_STATE(868)] = 21390, - [SMALL_STATE(869)] = 21444, - [SMALL_STATE(870)] = 21498, - [SMALL_STATE(871)] = 21552, - [SMALL_STATE(872)] = 21606, - [SMALL_STATE(873)] = 21662, - [SMALL_STATE(874)] = 21716, - [SMALL_STATE(875)] = 21770, - [SMALL_STATE(876)] = 21824, - [SMALL_STATE(877)] = 21878, - [SMALL_STATE(878)] = 21932, - [SMALL_STATE(879)] = 21986, - [SMALL_STATE(880)] = 22040, - [SMALL_STATE(881)] = 22096, - [SMALL_STATE(882)] = 22150, - [SMALL_STATE(883)] = 22204, - [SMALL_STATE(884)] = 22258, - [SMALL_STATE(885)] = 22314, - [SMALL_STATE(886)] = 22368, - [SMALL_STATE(887)] = 22422, - [SMALL_STATE(888)] = 22476, - [SMALL_STATE(889)] = 22530, - [SMALL_STATE(890)] = 22584, - [SMALL_STATE(891)] = 22638, - [SMALL_STATE(892)] = 22692, - [SMALL_STATE(893)] = 22746, - [SMALL_STATE(894)] = 22800, - [SMALL_STATE(895)] = 22854, - [SMALL_STATE(896)] = 22908, - [SMALL_STATE(897)] = 22962, - [SMALL_STATE(898)] = 23016, - [SMALL_STATE(899)] = 23070, - [SMALL_STATE(900)] = 23124, - [SMALL_STATE(901)] = 23178, - [SMALL_STATE(902)] = 23232, - [SMALL_STATE(903)] = 23286, - [SMALL_STATE(904)] = 23340, - [SMALL_STATE(905)] = 23394, - [SMALL_STATE(906)] = 23448, - [SMALL_STATE(907)] = 23502, - [SMALL_STATE(908)] = 23558, - [SMALL_STATE(909)] = 23612, - [SMALL_STATE(910)] = 23666, - [SMALL_STATE(911)] = 23720, - [SMALL_STATE(912)] = 23774, - [SMALL_STATE(913)] = 23828, - [SMALL_STATE(914)] = 23882, - [SMALL_STATE(915)] = 23936, - [SMALL_STATE(916)] = 23990, - [SMALL_STATE(917)] = 24044, - [SMALL_STATE(918)] = 24098, - [SMALL_STATE(919)] = 24152, - [SMALL_STATE(920)] = 24206, - [SMALL_STATE(921)] = 24260, - [SMALL_STATE(922)] = 24314, - [SMALL_STATE(923)] = 24368, - [SMALL_STATE(924)] = 24422, - [SMALL_STATE(925)] = 24476, - [SMALL_STATE(926)] = 24530, - [SMALL_STATE(927)] = 24584, - [SMALL_STATE(928)] = 24638, - [SMALL_STATE(929)] = 24692, - [SMALL_STATE(930)] = 24746, - [SMALL_STATE(931)] = 24800, - [SMALL_STATE(932)] = 24854, - [SMALL_STATE(933)] = 24908, - [SMALL_STATE(934)] = 24962, - [SMALL_STATE(935)] = 25016, - [SMALL_STATE(936)] = 25070, - [SMALL_STATE(937)] = 25124, - [SMALL_STATE(938)] = 25178, - [SMALL_STATE(939)] = 25232, - [SMALL_STATE(940)] = 25286, - [SMALL_STATE(941)] = 25340, - [SMALL_STATE(942)] = 25394, - [SMALL_STATE(943)] = 25448, - [SMALL_STATE(944)] = 25502, - [SMALL_STATE(945)] = 25556, - [SMALL_STATE(946)] = 25610, - [SMALL_STATE(947)] = 25664, - [SMALL_STATE(948)] = 25718, - [SMALL_STATE(949)] = 25772, - [SMALL_STATE(950)] = 25826, - [SMALL_STATE(951)] = 25880, - [SMALL_STATE(952)] = 25934, - [SMALL_STATE(953)] = 25988, - [SMALL_STATE(954)] = 26042, - [SMALL_STATE(955)] = 26096, - [SMALL_STATE(956)] = 26150, - [SMALL_STATE(957)] = 26204, - [SMALL_STATE(958)] = 26258, - [SMALL_STATE(959)] = 26312, - [SMALL_STATE(960)] = 26366, - [SMALL_STATE(961)] = 26420, - [SMALL_STATE(962)] = 26474, - [SMALL_STATE(963)] = 26528, - [SMALL_STATE(964)] = 26582, - [SMALL_STATE(965)] = 26636, - [SMALL_STATE(966)] = 26690, - [SMALL_STATE(967)] = 26744, - [SMALL_STATE(968)] = 26798, - [SMALL_STATE(969)] = 26852, - [SMALL_STATE(970)] = 26906, - [SMALL_STATE(971)] = 26960, - [SMALL_STATE(972)] = 27014, - [SMALL_STATE(973)] = 27068, - [SMALL_STATE(974)] = 27122, - [SMALL_STATE(975)] = 27176, - [SMALL_STATE(976)] = 27230, - [SMALL_STATE(977)] = 27284, - [SMALL_STATE(978)] = 27338, - [SMALL_STATE(979)] = 27392, - [SMALL_STATE(980)] = 27446, - [SMALL_STATE(981)] = 27500, - [SMALL_STATE(982)] = 27554, - [SMALL_STATE(983)] = 27608, - [SMALL_STATE(984)] = 27662, - [SMALL_STATE(985)] = 27716, - [SMALL_STATE(986)] = 27770, - [SMALL_STATE(987)] = 27824, - [SMALL_STATE(988)] = 27880, - [SMALL_STATE(989)] = 27934, - [SMALL_STATE(990)] = 27988, - [SMALL_STATE(991)] = 28044, - [SMALL_STATE(992)] = 28098, - [SMALL_STATE(993)] = 28152, - [SMALL_STATE(994)] = 28206, - [SMALL_STATE(995)] = 28260, - [SMALL_STATE(996)] = 28314, - [SMALL_STATE(997)] = 28368, - [SMALL_STATE(998)] = 28422, - [SMALL_STATE(999)] = 28476, - [SMALL_STATE(1000)] = 28530, - [SMALL_STATE(1001)] = 28584, - [SMALL_STATE(1002)] = 28638, - [SMALL_STATE(1003)] = 28692, - [SMALL_STATE(1004)] = 28746, - [SMALL_STATE(1005)] = 28800, - [SMALL_STATE(1006)] = 28854, - [SMALL_STATE(1007)] = 28910, - [SMALL_STATE(1008)] = 28964, - [SMALL_STATE(1009)] = 29018, - [SMALL_STATE(1010)] = 29072, - [SMALL_STATE(1011)] = 29126, - [SMALL_STATE(1012)] = 29180, - [SMALL_STATE(1013)] = 29234, - [SMALL_STATE(1014)] = 29288, - [SMALL_STATE(1015)] = 29342, - [SMALL_STATE(1016)] = 29396, - [SMALL_STATE(1017)] = 29450, - [SMALL_STATE(1018)] = 29504, - [SMALL_STATE(1019)] = 29558, - [SMALL_STATE(1020)] = 29612, - [SMALL_STATE(1021)] = 29666, - [SMALL_STATE(1022)] = 29720, - [SMALL_STATE(1023)] = 29774, - [SMALL_STATE(1024)] = 29828, - [SMALL_STATE(1025)] = 29882, - [SMALL_STATE(1026)] = 29936, - [SMALL_STATE(1027)] = 29989, - [SMALL_STATE(1028)] = 30042, - [SMALL_STATE(1029)] = 30097, - [SMALL_STATE(1030)] = 30150, - [SMALL_STATE(1031)] = 30205, - [SMALL_STATE(1032)] = 30258, - [SMALL_STATE(1033)] = 30311, - [SMALL_STATE(1034)] = 30364, - [SMALL_STATE(1035)] = 30417, - [SMALL_STATE(1036)] = 30470, - [SMALL_STATE(1037)] = 30523, - [SMALL_STATE(1038)] = 30576, - [SMALL_STATE(1039)] = 30629, - [SMALL_STATE(1040)] = 30682, - [SMALL_STATE(1041)] = 30735, - [SMALL_STATE(1042)] = 30788, - [SMALL_STATE(1043)] = 30843, - [SMALL_STATE(1044)] = 30896, - [SMALL_STATE(1045)] = 30949, - [SMALL_STATE(1046)] = 31002, - [SMALL_STATE(1047)] = 31055, - [SMALL_STATE(1048)] = 31108, - [SMALL_STATE(1049)] = 31161, - [SMALL_STATE(1050)] = 31214, - [SMALL_STATE(1051)] = 31267, - [SMALL_STATE(1052)] = 31320, - [SMALL_STATE(1053)] = 31373, - [SMALL_STATE(1054)] = 31426, - [SMALL_STATE(1055)] = 31479, - [SMALL_STATE(1056)] = 31532, - [SMALL_STATE(1057)] = 31585, - [SMALL_STATE(1058)] = 31638, - [SMALL_STATE(1059)] = 31695, - [SMALL_STATE(1060)] = 31748, - [SMALL_STATE(1061)] = 31801, - [SMALL_STATE(1062)] = 31854, - [SMALL_STATE(1063)] = 31907, - [SMALL_STATE(1064)] = 31960, - [SMALL_STATE(1065)] = 32013, - [SMALL_STATE(1066)] = 32066, - [SMALL_STATE(1067)] = 32119, - [SMALL_STATE(1068)] = 32172, - [SMALL_STATE(1069)] = 32225, - [SMALL_STATE(1070)] = 32278, - [SMALL_STATE(1071)] = 32331, - [SMALL_STATE(1072)] = 32384, - [SMALL_STATE(1073)] = 32437, - [SMALL_STATE(1074)] = 32490, - [SMALL_STATE(1075)] = 32543, - [SMALL_STATE(1076)] = 32596, - [SMALL_STATE(1077)] = 32649, - [SMALL_STATE(1078)] = 32738, - [SMALL_STATE(1079)] = 32791, - [SMALL_STATE(1080)] = 32844, - [SMALL_STATE(1081)] = 32897, - [SMALL_STATE(1082)] = 32950, - [SMALL_STATE(1083)] = 33003, - [SMALL_STATE(1084)] = 33056, - [SMALL_STATE(1085)] = 33109, - [SMALL_STATE(1086)] = 33162, - [SMALL_STATE(1087)] = 33215, - [SMALL_STATE(1088)] = 33268, - [SMALL_STATE(1089)] = 33321, - [SMALL_STATE(1090)] = 33374, - [SMALL_STATE(1091)] = 33429, - [SMALL_STATE(1092)] = 33482, - [SMALL_STATE(1093)] = 33535, - [SMALL_STATE(1094)] = 33588, - [SMALL_STATE(1095)] = 33641, - [SMALL_STATE(1096)] = 33730, - [SMALL_STATE(1097)] = 33783, - [SMALL_STATE(1098)] = 33836, - [SMALL_STATE(1099)] = 33889, - [SMALL_STATE(1100)] = 33942, - [SMALL_STATE(1101)] = 33995, - [SMALL_STATE(1102)] = 34048, - [SMALL_STATE(1103)] = 34101, - [SMALL_STATE(1104)] = 34154, - [SMALL_STATE(1105)] = 34207, - [SMALL_STATE(1106)] = 34260, - [SMALL_STATE(1107)] = 34313, - [SMALL_STATE(1108)] = 34366, - [SMALL_STATE(1109)] = 34419, - [SMALL_STATE(1110)] = 34472, - [SMALL_STATE(1111)] = 34525, - [SMALL_STATE(1112)] = 34578, - [SMALL_STATE(1113)] = 34631, - [SMALL_STATE(1114)] = 34684, - [SMALL_STATE(1115)] = 34737, - [SMALL_STATE(1116)] = 34790, - [SMALL_STATE(1117)] = 34843, - [SMALL_STATE(1118)] = 34896, - [SMALL_STATE(1119)] = 34949, - [SMALL_STATE(1120)] = 35002, - [SMALL_STATE(1121)] = 35055, - [SMALL_STATE(1122)] = 35108, - [SMALL_STATE(1123)] = 35161, - [SMALL_STATE(1124)] = 35214, - [SMALL_STATE(1125)] = 35267, - [SMALL_STATE(1126)] = 35320, - [SMALL_STATE(1127)] = 35400, - [SMALL_STATE(1128)] = 35460, - [SMALL_STATE(1129)] = 35512, - [SMALL_STATE(1130)] = 35598, - [SMALL_STATE(1131)] = 35658, - [SMALL_STATE(1132)] = 35718, - [SMALL_STATE(1133)] = 35798, - [SMALL_STATE(1134)] = 35860, - [SMALL_STATE(1135)] = 35940, - [SMALL_STATE(1136)] = 36000, - [SMALL_STATE(1137)] = 36080, - [SMALL_STATE(1138)] = 36160, - [SMALL_STATE(1139)] = 36232, - [SMALL_STATE(1140)] = 36318, - [SMALL_STATE(1141)] = 36370, - [SMALL_STATE(1142)] = 36436, - [SMALL_STATE(1143)] = 36512, - [SMALL_STATE(1144)] = 36590, - [SMALL_STATE(1145)] = 36660, - [SMALL_STATE(1146)] = 36720, - [SMALL_STATE(1147)] = 36788, - [SMALL_STATE(1148)] = 36852, - [SMALL_STATE(1149)] = 36932, - [SMALL_STATE(1150)] = 37017, - [SMALL_STATE(1151)] = 37104, - [SMALL_STATE(1152)] = 37191, - [SMALL_STATE(1153)] = 37270, - [SMALL_STATE(1154)] = 37321, - [SMALL_STATE(1155)] = 37378, - [SMALL_STATE(1156)] = 37465, - [SMALL_STATE(1157)] = 37550, - [SMALL_STATE(1158)] = 37637, - [SMALL_STATE(1159)] = 37688, - [SMALL_STATE(1160)] = 37744, - [SMALL_STATE(1161)] = 37820, - [SMALL_STATE(1162)] = 37896, - [SMALL_STATE(1163)] = 37972, - [SMALL_STATE(1164)] = 38026, - [SMALL_STATE(1165)] = 38102, - [SMALL_STATE(1166)] = 38151, - [SMALL_STATE(1167)] = 38240, - [SMALL_STATE(1168)] = 38289, - [SMALL_STATE(1169)] = 38338, - [SMALL_STATE(1170)] = 38387, - [SMALL_STATE(1171)] = 38476, - [SMALL_STATE(1172)] = 38525, - [SMALL_STATE(1173)] = 38576, - [SMALL_STATE(1174)] = 38627, - [SMALL_STATE(1175)] = 38676, - [SMALL_STATE(1176)] = 38725, - [SMALL_STATE(1177)] = 38778, - [SMALL_STATE(1178)] = 38827, - [SMALL_STATE(1179)] = 38880, - [SMALL_STATE(1180)] = 38953, - [SMALL_STATE(1181)] = 39002, - [SMALL_STATE(1182)] = 39052, - [SMALL_STATE(1183)] = 39130, - [SMALL_STATE(1184)] = 39180, - [SMALL_STATE(1185)] = 39230, - [SMALL_STATE(1186)] = 39316, - [SMALL_STATE(1187)] = 39402, - [SMALL_STATE(1188)] = 39452, - [SMALL_STATE(1189)] = 39530, - [SMALL_STATE(1190)] = 39605, - [SMALL_STATE(1191)] = 39688, - [SMALL_STATE(1192)] = 39771, - [SMALL_STATE(1193)] = 39852, - [SMALL_STATE(1194)] = 39935, - [SMALL_STATE(1195)] = 40018, - [SMALL_STATE(1196)] = 40093, - [SMALL_STATE(1197)] = 40176, - [SMALL_STATE(1198)] = 40259, - [SMALL_STATE(1199)] = 40342, - [SMALL_STATE(1200)] = 40425, - [SMALL_STATE(1201)] = 40508, - [SMALL_STATE(1202)] = 40591, - [SMALL_STATE(1203)] = 40674, - [SMALL_STATE(1204)] = 40757, - [SMALL_STATE(1205)] = 40840, - [SMALL_STATE(1206)] = 40923, - [SMALL_STATE(1207)] = 41006, - [SMALL_STATE(1208)] = 41061, - [SMALL_STATE(1209)] = 41142, - [SMALL_STATE(1210)] = 41223, - [SMALL_STATE(1211)] = 41298, - [SMALL_STATE(1212)] = 41381, - [SMALL_STATE(1213)] = 41464, - [SMALL_STATE(1214)] = 41547, - [SMALL_STATE(1215)] = 41630, - [SMALL_STATE(1216)] = 41713, - [SMALL_STATE(1217)] = 41796, - [SMALL_STATE(1218)] = 41879, - [SMALL_STATE(1219)] = 41934, - [SMALL_STATE(1220)] = 42017, - [SMALL_STATE(1221)] = 42092, - [SMALL_STATE(1222)] = 42175, - [SMALL_STATE(1223)] = 42258, - [SMALL_STATE(1224)] = 42313, - [SMALL_STATE(1225)] = 42368, - [SMALL_STATE(1226)] = 42451, - [SMALL_STATE(1227)] = 42534, - [SMALL_STATE(1228)] = 42615, - [SMALL_STATE(1229)] = 42690, - [SMALL_STATE(1230)] = 42749, - [SMALL_STATE(1231)] = 42832, - [SMALL_STATE(1232)] = 42895, - [SMALL_STATE(1233)] = 42978, - [SMALL_STATE(1234)] = 43061, - [SMALL_STATE(1235)] = 43142, - [SMALL_STATE(1236)] = 43223, - [SMALL_STATE(1237)] = 43306, - [SMALL_STATE(1238)] = 43389, - [SMALL_STATE(1239)] = 43472, - [SMALL_STATE(1240)] = 43537, - [SMALL_STATE(1241)] = 43610, - [SMALL_STATE(1242)] = 43681, - [SMALL_STATE(1243)] = 43762, - [SMALL_STATE(1244)] = 43823, - [SMALL_STATE(1245)] = 43906, - [SMALL_STATE(1246)] = 43989, - [SMALL_STATE(1247)] = 44070, - [SMALL_STATE(1248)] = 44137, - [SMALL_STATE(1249)] = 44220, - [SMALL_STATE(1250)] = 44295, - [SMALL_STATE(1251)] = 44378, - [SMALL_STATE(1252)] = 44435, - [SMALL_STATE(1253)] = 44518, - [SMALL_STATE(1254)] = 44599, - [SMALL_STATE(1255)] = 44682, - [SMALL_STATE(1256)] = 44765, - [SMALL_STATE(1257)] = 44848, - [SMALL_STATE(1258)] = 44931, - [SMALL_STATE(1259)] = 45014, - [SMALL_STATE(1260)] = 45097, - [SMALL_STATE(1261)] = 45178, - [SMALL_STATE(1262)] = 45261, - [SMALL_STATE(1263)] = 45342, - [SMALL_STATE(1264)] = 45423, - [SMALL_STATE(1265)] = 45494, - [SMALL_STATE(1266)] = 45574, - [SMALL_STATE(1267)] = 45654, - [SMALL_STATE(1268)] = 45734, - [SMALL_STATE(1269)] = 45814, - [SMALL_STATE(1270)] = 45894, - [SMALL_STATE(1271)] = 45974, - [SMALL_STATE(1272)] = 46054, - [SMALL_STATE(1273)] = 46134, - [SMALL_STATE(1274)] = 46214, - [SMALL_STATE(1275)] = 46282, - [SMALL_STATE(1276)] = 46362, - [SMALL_STATE(1277)] = 46442, - [SMALL_STATE(1278)] = 46522, - [SMALL_STATE(1279)] = 46602, - [SMALL_STATE(1280)] = 46682, - [SMALL_STATE(1281)] = 46762, - [SMALL_STATE(1282)] = 46842, - [SMALL_STATE(1283)] = 46922, - [SMALL_STATE(1284)] = 47002, - [SMALL_STATE(1285)] = 47082, - [SMALL_STATE(1286)] = 47162, - [SMALL_STATE(1287)] = 47242, - [SMALL_STATE(1288)] = 47322, - [SMALL_STATE(1289)] = 47402, - [SMALL_STATE(1290)] = 47482, - [SMALL_STATE(1291)] = 47562, - [SMALL_STATE(1292)] = 47642, - [SMALL_STATE(1293)] = 47722, - [SMALL_STATE(1294)] = 47802, - [SMALL_STATE(1295)] = 47882, - [SMALL_STATE(1296)] = 47962, - [SMALL_STATE(1297)] = 48030, - [SMALL_STATE(1298)] = 48110, - [SMALL_STATE(1299)] = 48175, - [SMALL_STATE(1300)] = 48240, - [SMALL_STATE(1301)] = 48305, - [SMALL_STATE(1302)] = 48370, - [SMALL_STATE(1303)] = 48435, - [SMALL_STATE(1304)] = 48475, - [SMALL_STATE(1305)] = 48515, - [SMALL_STATE(1306)] = 48555, - [SMALL_STATE(1307)] = 48610, - [SMALL_STATE(1308)] = 48665, - [SMALL_STATE(1309)] = 48720, - [SMALL_STATE(1310)] = 48775, - [SMALL_STATE(1311)] = 48830, - [SMALL_STATE(1312)] = 48885, - [SMALL_STATE(1313)] = 48940, - [SMALL_STATE(1314)] = 48992, - [SMALL_STATE(1315)] = 49044, - [SMALL_STATE(1316)] = 49074, - [SMALL_STATE(1317)] = 49104, - [SMALL_STATE(1318)] = 49146, - [SMALL_STATE(1319)] = 49186, - [SMALL_STATE(1320)] = 49215, - [SMALL_STATE(1321)] = 49244, - [SMALL_STATE(1322)] = 49281, - [SMALL_STATE(1323)] = 49318, - [SMALL_STATE(1324)] = 49347, - [SMALL_STATE(1325)] = 49376, - [SMALL_STATE(1326)] = 49405, - [SMALL_STATE(1327)] = 49434, - [SMALL_STATE(1328)] = 49463, - [SMALL_STATE(1329)] = 49492, - [SMALL_STATE(1330)] = 49546, - [SMALL_STATE(1331)] = 49578, - [SMALL_STATE(1332)] = 49632, - [SMALL_STATE(1333)] = 49664, - [SMALL_STATE(1334)] = 49696, - [SMALL_STATE(1335)] = 49721, - [SMALL_STATE(1336)] = 49744, - [SMALL_STATE(1337)] = 49768, - [SMALL_STATE(1338)] = 49792, - [SMALL_STATE(1339)] = 49816, - [SMALL_STATE(1340)] = 49840, - [SMALL_STATE(1341)] = 49864, - [SMALL_STATE(1342)] = 49910, - [SMALL_STATE(1343)] = 49932, - [SMALL_STATE(1344)] = 49956, - [SMALL_STATE(1345)] = 50000, - [SMALL_STATE(1346)] = 50044, - [SMALL_STATE(1347)] = 50068, - [SMALL_STATE(1348)] = 50092, - [SMALL_STATE(1349)] = 50122, - [SMALL_STATE(1350)] = 50144, - [SMALL_STATE(1351)] = 50168, - [SMALL_STATE(1352)] = 50190, - [SMALL_STATE(1353)] = 50214, - [SMALL_STATE(1354)] = 50236, - [SMALL_STATE(1355)] = 50261, - [SMALL_STATE(1356)] = 50282, - [SMALL_STATE(1357)] = 50305, - [SMALL_STATE(1358)] = 50330, - [SMALL_STATE(1359)] = 50351, - [SMALL_STATE(1360)] = 50376, - [SMALL_STATE(1361)] = 50399, - [SMALL_STATE(1362)] = 50444, - [SMALL_STATE(1363)] = 50465, - [SMALL_STATE(1364)] = 50486, - [SMALL_STATE(1365)] = 50509, - [SMALL_STATE(1366)] = 50532, - [SMALL_STATE(1367)] = 50559, - [SMALL_STATE(1368)] = 50582, - [SMALL_STATE(1369)] = 50603, - [SMALL_STATE(1370)] = 50628, - [SMALL_STATE(1371)] = 50653, - [SMALL_STATE(1372)] = 50676, - [SMALL_STATE(1373)] = 50699, - [SMALL_STATE(1374)] = 50724, - [SMALL_STATE(1375)] = 50747, - [SMALL_STATE(1376)] = 50769, - [SMALL_STATE(1377)] = 50789, - [SMALL_STATE(1378)] = 50809, - [SMALL_STATE(1379)] = 50829, - [SMALL_STATE(1380)] = 50849, - [SMALL_STATE(1381)] = 50869, - [SMALL_STATE(1382)] = 50889, - [SMALL_STATE(1383)] = 50909, - [SMALL_STATE(1384)] = 50929, - [SMALL_STATE(1385)] = 50951, - [SMALL_STATE(1386)] = 50971, - [SMALL_STATE(1387)] = 50991, - [SMALL_STATE(1388)] = 51011, - [SMALL_STATE(1389)] = 51031, - [SMALL_STATE(1390)] = 51051, - [SMALL_STATE(1391)] = 51071, - [SMALL_STATE(1392)] = 51091, - [SMALL_STATE(1393)] = 51111, - [SMALL_STATE(1394)] = 51131, - [SMALL_STATE(1395)] = 51151, - [SMALL_STATE(1396)] = 51175, - [SMALL_STATE(1397)] = 51195, - [SMALL_STATE(1398)] = 51215, - [SMALL_STATE(1399)] = 51235, - [SMALL_STATE(1400)] = 51255, - [SMALL_STATE(1401)] = 51275, - [SMALL_STATE(1402)] = 51295, - [SMALL_STATE(1403)] = 51315, - [SMALL_STATE(1404)] = 51335, - [SMALL_STATE(1405)] = 51355, - [SMALL_STATE(1406)] = 51377, - [SMALL_STATE(1407)] = 51402, - [SMALL_STATE(1408)] = 51425, - [SMALL_STATE(1409)] = 51460, - [SMALL_STATE(1410)] = 51483, - [SMALL_STATE(1411)] = 51504, - [SMALL_STATE(1412)] = 51527, - [SMALL_STATE(1413)] = 51550, - [SMALL_STATE(1414)] = 51573, - [SMALL_STATE(1415)] = 51596, - [SMALL_STATE(1416)] = 51619, - [SMALL_STATE(1417)] = 51642, - [SMALL_STATE(1418)] = 51667, - [SMALL_STATE(1419)] = 51690, - [SMALL_STATE(1420)] = 51713, - [SMALL_STATE(1421)] = 51736, - [SMALL_STATE(1422)] = 51761, - [SMALL_STATE(1423)] = 51784, - [SMALL_STATE(1424)] = 51809, - [SMALL_STATE(1425)] = 51830, - [SMALL_STATE(1426)] = 51851, - [SMALL_STATE(1427)] = 51876, - [SMALL_STATE(1428)] = 51901, - [SMALL_STATE(1429)] = 51926, - [SMALL_STATE(1430)] = 51951, - [SMALL_STATE(1431)] = 51971, - [SMALL_STATE(1432)] = 52003, - [SMALL_STATE(1433)] = 52023, - [SMALL_STATE(1434)] = 52047, - [SMALL_STATE(1435)] = 52071, - [SMALL_STATE(1436)] = 52091, - [SMALL_STATE(1437)] = 52111, - [SMALL_STATE(1438)] = 52131, - [SMALL_STATE(1439)] = 52151, - [SMALL_STATE(1440)] = 52175, - [SMALL_STATE(1441)] = 52195, - [SMALL_STATE(1442)] = 52215, - [SMALL_STATE(1443)] = 52247, - [SMALL_STATE(1444)] = 52279, - [SMALL_STATE(1445)] = 52299, - [SMALL_STATE(1446)] = 52325, - [SMALL_STATE(1447)] = 52345, - [SMALL_STATE(1448)] = 52365, - [SMALL_STATE(1449)] = 52397, - [SMALL_STATE(1450)] = 52417, - [SMALL_STATE(1451)] = 52437, - [SMALL_STATE(1452)] = 52457, - [SMALL_STATE(1453)] = 52477, - [SMALL_STATE(1454)] = 52509, - [SMALL_STATE(1455)] = 52529, - [SMALL_STATE(1456)] = 52549, - [SMALL_STATE(1457)] = 52569, - [SMALL_STATE(1458)] = 52589, - [SMALL_STATE(1459)] = 52609, - [SMALL_STATE(1460)] = 52641, - [SMALL_STATE(1461)] = 52673, - [SMALL_STATE(1462)] = 52705, - [SMALL_STATE(1463)] = 52725, - [SMALL_STATE(1464)] = 52745, - [SMALL_STATE(1465)] = 52765, - [SMALL_STATE(1466)] = 52785, - [SMALL_STATE(1467)] = 52805, - [SMALL_STATE(1468)] = 52825, - [SMALL_STATE(1469)] = 52851, - [SMALL_STATE(1470)] = 52871, - [SMALL_STATE(1471)] = 52891, - [SMALL_STATE(1472)] = 52911, - [SMALL_STATE(1473)] = 52931, - [SMALL_STATE(1474)] = 52955, - [SMALL_STATE(1475)] = 52975, - [SMALL_STATE(1476)] = 52998, - [SMALL_STATE(1477)] = 53021, - [SMALL_STATE(1478)] = 53054, - [SMALL_STATE(1479)] = 53079, - [SMALL_STATE(1480)] = 53112, - [SMALL_STATE(1481)] = 53137, - [SMALL_STATE(1482)] = 53166, - [SMALL_STATE(1483)] = 53191, - [SMALL_STATE(1484)] = 53222, - [SMALL_STATE(1485)] = 53245, - [SMALL_STATE(1486)] = 53272, - [SMALL_STATE(1487)] = 53305, - [SMALL_STATE(1488)] = 53338, - [SMALL_STATE(1489)] = 53368, - [SMALL_STATE(1490)] = 53398, - [SMALL_STATE(1491)] = 53424, - [SMALL_STATE(1492)] = 53446, - [SMALL_STATE(1493)] = 53472, - [SMALL_STATE(1494)] = 53504, - [SMALL_STATE(1495)] = 53534, - [SMALL_STATE(1496)] = 53564, - [SMALL_STATE(1497)] = 53594, - [SMALL_STATE(1498)] = 53624, - [SMALL_STATE(1499)] = 53650, - [SMALL_STATE(1500)] = 53672, - [SMALL_STATE(1501)] = 53698, - [SMALL_STATE(1502)] = 53730, - [SMALL_STATE(1503)] = 53760, - [SMALL_STATE(1504)] = 53782, - [SMALL_STATE(1505)] = 53804, - [SMALL_STATE(1506)] = 53834, - [SMALL_STATE(1507)] = 53864, - [SMALL_STATE(1508)] = 53894, - [SMALL_STATE(1509)] = 53924, - [SMALL_STATE(1510)] = 53954, - [SMALL_STATE(1511)] = 53984, - [SMALL_STATE(1512)] = 54014, - [SMALL_STATE(1513)] = 54044, - [SMALL_STATE(1514)] = 54076, - [SMALL_STATE(1515)] = 54098, - [SMALL_STATE(1516)] = 54124, - [SMALL_STATE(1517)] = 54150, - [SMALL_STATE(1518)] = 54180, - [SMALL_STATE(1519)] = 54206, - [SMALL_STATE(1520)] = 54232, - [SMALL_STATE(1521)] = 54262, - [SMALL_STATE(1522)] = 54292, - [SMALL_STATE(1523)] = 54318, - [SMALL_STATE(1524)] = 54344, - [SMALL_STATE(1525)] = 54374, - [SMALL_STATE(1526)] = 54400, - [SMALL_STATE(1527)] = 54422, - [SMALL_STATE(1528)] = 54452, - [SMALL_STATE(1529)] = 54482, - [SMALL_STATE(1530)] = 54514, - [SMALL_STATE(1531)] = 54533, - [SMALL_STATE(1532)] = 54560, - [SMALL_STATE(1533)] = 54579, - [SMALL_STATE(1534)] = 54608, - [SMALL_STATE(1535)] = 54631, - [SMALL_STATE(1536)] = 54658, - [SMALL_STATE(1537)] = 54677, - [SMALL_STATE(1538)] = 54696, - [SMALL_STATE(1539)] = 54723, - [SMALL_STATE(1540)] = 54746, - [SMALL_STATE(1541)] = 54773, - [SMALL_STATE(1542)] = 54800, - [SMALL_STATE(1543)] = 54829, - [SMALL_STATE(1544)] = 54858, - [SMALL_STATE(1545)] = 54885, - [SMALL_STATE(1546)] = 54904, - [SMALL_STATE(1547)] = 54931, - [SMALL_STATE(1548)] = 54958, - [SMALL_STATE(1549)] = 54985, - [SMALL_STATE(1550)] = 55006, - [SMALL_STATE(1551)] = 55025, - [SMALL_STATE(1552)] = 55052, - [SMALL_STATE(1553)] = 55073, - [SMALL_STATE(1554)] = 55100, - [SMALL_STATE(1555)] = 55119, - [SMALL_STATE(1556)] = 55138, - [SMALL_STATE(1557)] = 55167, - [SMALL_STATE(1558)] = 55190, - [SMALL_STATE(1559)] = 55217, - [SMALL_STATE(1560)] = 55244, - [SMALL_STATE(1561)] = 55267, - [SMALL_STATE(1562)] = 55282, - [SMALL_STATE(1563)] = 55311, - [SMALL_STATE(1564)] = 55338, - [SMALL_STATE(1565)] = 55361, - [SMALL_STATE(1566)] = 55380, - [SMALL_STATE(1567)] = 55399, - [SMALL_STATE(1568)] = 55426, - [SMALL_STATE(1569)] = 55455, - [SMALL_STATE(1570)] = 55474, - [SMALL_STATE(1571)] = 55499, - [SMALL_STATE(1572)] = 55513, - [SMALL_STATE(1573)] = 55527, - [SMALL_STATE(1574)] = 55541, - [SMALL_STATE(1575)] = 55567, - [SMALL_STATE(1576)] = 55581, - [SMALL_STATE(1577)] = 55595, - [SMALL_STATE(1578)] = 55617, - [SMALL_STATE(1579)] = 55643, - [SMALL_STATE(1580)] = 55667, - [SMALL_STATE(1581)] = 55693, - [SMALL_STATE(1582)] = 55715, - [SMALL_STATE(1583)] = 55729, - [SMALL_STATE(1584)] = 55751, - [SMALL_STATE(1585)] = 55773, - [SMALL_STATE(1586)] = 55795, - [SMALL_STATE(1587)] = 55811, - [SMALL_STATE(1588)] = 55827, - [SMALL_STATE(1589)] = 55853, - [SMALL_STATE(1590)] = 55879, - [SMALL_STATE(1591)] = 55903, - [SMALL_STATE(1592)] = 55927, - [SMALL_STATE(1593)] = 55943, - [SMALL_STATE(1594)] = 55959, - [SMALL_STATE(1595)] = 55985, - [SMALL_STATE(1596)] = 56001, - [SMALL_STATE(1597)] = 56025, - [SMALL_STATE(1598)] = 56049, - [SMALL_STATE(1599)] = 56075, - [SMALL_STATE(1600)] = 56101, - [SMALL_STATE(1601)] = 56127, - [SMALL_STATE(1602)] = 56149, - [SMALL_STATE(1603)] = 56175, - [SMALL_STATE(1604)] = 56189, - [SMALL_STATE(1605)] = 56215, - [SMALL_STATE(1606)] = 56241, - [SMALL_STATE(1607)] = 56257, - [SMALL_STATE(1608)] = 56283, - [SMALL_STATE(1609)] = 56309, - [SMALL_STATE(1610)] = 56335, - [SMALL_STATE(1611)] = 56361, - [SMALL_STATE(1612)] = 56377, - [SMALL_STATE(1613)] = 56403, - [SMALL_STATE(1614)] = 56429, - [SMALL_STATE(1615)] = 56455, - [SMALL_STATE(1616)] = 56471, - [SMALL_STATE(1617)] = 56497, - [SMALL_STATE(1618)] = 56520, - [SMALL_STATE(1619)] = 56543, - [SMALL_STATE(1620)] = 56566, - [SMALL_STATE(1621)] = 56583, - [SMALL_STATE(1622)] = 56606, - [SMALL_STATE(1623)] = 56629, - [SMALL_STATE(1624)] = 56646, - [SMALL_STATE(1625)] = 56669, - [SMALL_STATE(1626)] = 56692, - [SMALL_STATE(1627)] = 56715, - [SMALL_STATE(1628)] = 56738, - [SMALL_STATE(1629)] = 56755, - [SMALL_STATE(1630)] = 56778, - [SMALL_STATE(1631)] = 56795, - [SMALL_STATE(1632)] = 56818, - [SMALL_STATE(1633)] = 56841, - [SMALL_STATE(1634)] = 56864, - [SMALL_STATE(1635)] = 56887, - [SMALL_STATE(1636)] = 56904, - [SMALL_STATE(1637)] = 56927, - [SMALL_STATE(1638)] = 56950, - [SMALL_STATE(1639)] = 56973, - [SMALL_STATE(1640)] = 56996, - [SMALL_STATE(1641)] = 57019, - [SMALL_STATE(1642)] = 57042, - [SMALL_STATE(1643)] = 57059, - [SMALL_STATE(1644)] = 57082, - [SMALL_STATE(1645)] = 57105, - [SMALL_STATE(1646)] = 57128, - [SMALL_STATE(1647)] = 57151, - [SMALL_STATE(1648)] = 57168, - [SMALL_STATE(1649)] = 57191, - [SMALL_STATE(1650)] = 57214, - [SMALL_STATE(1651)] = 57237, - [SMALL_STATE(1652)] = 57254, - [SMALL_STATE(1653)] = 57277, - [SMALL_STATE(1654)] = 57298, - [SMALL_STATE(1655)] = 57321, - [SMALL_STATE(1656)] = 57344, - [SMALL_STATE(1657)] = 57367, - [SMALL_STATE(1658)] = 57390, - [SMALL_STATE(1659)] = 57413, - [SMALL_STATE(1660)] = 57436, - [SMALL_STATE(1661)] = 57451, - [SMALL_STATE(1662)] = 57474, - [SMALL_STATE(1663)] = 57497, - [SMALL_STATE(1664)] = 57516, - [SMALL_STATE(1665)] = 57539, - [SMALL_STATE(1666)] = 57556, - [SMALL_STATE(1667)] = 57579, - [SMALL_STATE(1668)] = 57596, - [SMALL_STATE(1669)] = 57615, - [SMALL_STATE(1670)] = 57638, - [SMALL_STATE(1671)] = 57661, - [SMALL_STATE(1672)] = 57684, - [SMALL_STATE(1673)] = 57707, - [SMALL_STATE(1674)] = 57730, - [SMALL_STATE(1675)] = 57753, - [SMALL_STATE(1676)] = 57774, - [SMALL_STATE(1677)] = 57797, - [SMALL_STATE(1678)] = 57820, - [SMALL_STATE(1679)] = 57843, - [SMALL_STATE(1680)] = 57866, - [SMALL_STATE(1681)] = 57889, - [SMALL_STATE(1682)] = 57912, - [SMALL_STATE(1683)] = 57935, - [SMALL_STATE(1684)] = 57958, - [SMALL_STATE(1685)] = 57975, - [SMALL_STATE(1686)] = 57998, - [SMALL_STATE(1687)] = 58021, - [SMALL_STATE(1688)] = 58038, - [SMALL_STATE(1689)] = 58055, - [SMALL_STATE(1690)] = 58078, - [SMALL_STATE(1691)] = 58101, - [SMALL_STATE(1692)] = 58124, - [SMALL_STATE(1693)] = 58147, - [SMALL_STATE(1694)] = 58170, - [SMALL_STATE(1695)] = 58193, - [SMALL_STATE(1696)] = 58216, - [SMALL_STATE(1697)] = 58239, - [SMALL_STATE(1698)] = 58254, - [SMALL_STATE(1699)] = 58277, - [SMALL_STATE(1700)] = 58300, - [SMALL_STATE(1701)] = 58323, - [SMALL_STATE(1702)] = 58346, - [SMALL_STATE(1703)] = 58369, - [SMALL_STATE(1704)] = 58392, - [SMALL_STATE(1705)] = 58415, - [SMALL_STATE(1706)] = 58432, - [SMALL_STATE(1707)] = 58455, - [SMALL_STATE(1708)] = 58474, - [SMALL_STATE(1709)] = 58491, - [SMALL_STATE(1710)] = 58503, - [SMALL_STATE(1711)] = 58523, - [SMALL_STATE(1712)] = 58539, - [SMALL_STATE(1713)] = 58555, - [SMALL_STATE(1714)] = 58573, - [SMALL_STATE(1715)] = 58591, - [SMALL_STATE(1716)] = 58607, - [SMALL_STATE(1717)] = 58619, - [SMALL_STATE(1718)] = 58635, - [SMALL_STATE(1719)] = 58647, - [SMALL_STATE(1720)] = 58659, - [SMALL_STATE(1721)] = 58671, - [SMALL_STATE(1722)] = 58687, - [SMALL_STATE(1723)] = 58707, - [SMALL_STATE(1724)] = 58719, - [SMALL_STATE(1725)] = 58739, - [SMALL_STATE(1726)] = 58751, - [SMALL_STATE(1727)] = 58767, - [SMALL_STATE(1728)] = 58779, - [SMALL_STATE(1729)] = 58797, - [SMALL_STATE(1730)] = 58815, - [SMALL_STATE(1731)] = 58833, - [SMALL_STATE(1732)] = 58847, - [SMALL_STATE(1733)] = 58863, - [SMALL_STATE(1734)] = 58879, - [SMALL_STATE(1735)] = 58897, - [SMALL_STATE(1736)] = 58917, - [SMALL_STATE(1737)] = 58929, - [SMALL_STATE(1738)] = 58941, - [SMALL_STATE(1739)] = 58957, - [SMALL_STATE(1740)] = 58969, - [SMALL_STATE(1741)] = 58981, - [SMALL_STATE(1742)] = 58993, - [SMALL_STATE(1743)] = 59005, - [SMALL_STATE(1744)] = 59017, - [SMALL_STATE(1745)] = 59029, - [SMALL_STATE(1746)] = 59041, - [SMALL_STATE(1747)] = 59057, - [SMALL_STATE(1748)] = 59075, - [SMALL_STATE(1749)] = 59095, - [SMALL_STATE(1750)] = 59109, - [SMALL_STATE(1751)] = 59125, - [SMALL_STATE(1752)] = 59137, - [SMALL_STATE(1753)] = 59149, - [SMALL_STATE(1754)] = 59167, - [SMALL_STATE(1755)] = 59183, - [SMALL_STATE(1756)] = 59203, - [SMALL_STATE(1757)] = 59215, - [SMALL_STATE(1758)] = 59227, - [SMALL_STATE(1759)] = 59243, - [SMALL_STATE(1760)] = 59260, - [SMALL_STATE(1761)] = 59277, - [SMALL_STATE(1762)] = 59292, - [SMALL_STATE(1763)] = 59307, - [SMALL_STATE(1764)] = 59322, - [SMALL_STATE(1765)] = 59337, - [SMALL_STATE(1766)] = 59352, - [SMALL_STATE(1767)] = 59369, - [SMALL_STATE(1768)] = 59386, - [SMALL_STATE(1769)] = 59403, - [SMALL_STATE(1770)] = 59420, - [SMALL_STATE(1771)] = 59433, - [SMALL_STATE(1772)] = 59448, - [SMALL_STATE(1773)] = 59463, - [SMALL_STATE(1774)] = 59480, - [SMALL_STATE(1775)] = 59497, - [SMALL_STATE(1776)] = 59514, - [SMALL_STATE(1777)] = 59527, - [SMALL_STATE(1778)] = 59540, - [SMALL_STATE(1779)] = 59557, - [SMALL_STATE(1780)] = 59574, - [SMALL_STATE(1781)] = 59589, - [SMALL_STATE(1782)] = 59604, - [SMALL_STATE(1783)] = 59619, - [SMALL_STATE(1784)] = 59636, - [SMALL_STATE(1785)] = 59651, - [SMALL_STATE(1786)] = 59668, - [SMALL_STATE(1787)] = 59685, - [SMALL_STATE(1788)] = 59702, - [SMALL_STATE(1789)] = 59719, - [SMALL_STATE(1790)] = 59736, - [SMALL_STATE(1791)] = 59753, - [SMALL_STATE(1792)] = 59768, - [SMALL_STATE(1793)] = 59785, - [SMALL_STATE(1794)] = 59802, - [SMALL_STATE(1795)] = 59817, - [SMALL_STATE(1796)] = 59830, - [SMALL_STATE(1797)] = 59845, - [SMALL_STATE(1798)] = 59862, - [SMALL_STATE(1799)] = 59879, - [SMALL_STATE(1800)] = 59896, - [SMALL_STATE(1801)] = 59913, - [SMALL_STATE(1802)] = 59928, - [SMALL_STATE(1803)] = 59945, - [SMALL_STATE(1804)] = 59962, - [SMALL_STATE(1805)] = 59979, - [SMALL_STATE(1806)] = 59996, - [SMALL_STATE(1807)] = 60013, - [SMALL_STATE(1808)] = 60030, - [SMALL_STATE(1809)] = 60047, - [SMALL_STATE(1810)] = 60060, - [SMALL_STATE(1811)] = 60077, - [SMALL_STATE(1812)] = 60090, - [SMALL_STATE(1813)] = 60107, - [SMALL_STATE(1814)] = 60124, - [SMALL_STATE(1815)] = 60141, - [SMALL_STATE(1816)] = 60158, - [SMALL_STATE(1817)] = 60175, - [SMALL_STATE(1818)] = 60190, - [SMALL_STATE(1819)] = 60207, - [SMALL_STATE(1820)] = 60224, - [SMALL_STATE(1821)] = 60241, - [SMALL_STATE(1822)] = 60258, - [SMALL_STATE(1823)] = 60275, - [SMALL_STATE(1824)] = 60292, - [SMALL_STATE(1825)] = 60309, - [SMALL_STATE(1826)] = 60326, - [SMALL_STATE(1827)] = 60343, - [SMALL_STATE(1828)] = 60360, - [SMALL_STATE(1829)] = 60377, - [SMALL_STATE(1830)] = 60394, - [SMALL_STATE(1831)] = 60411, - [SMALL_STATE(1832)] = 60428, - [SMALL_STATE(1833)] = 60445, - [SMALL_STATE(1834)] = 60460, - [SMALL_STATE(1835)] = 60477, - [SMALL_STATE(1836)] = 60494, - [SMALL_STATE(1837)] = 60509, - [SMALL_STATE(1838)] = 60526, - [SMALL_STATE(1839)] = 60543, - [SMALL_STATE(1840)] = 60558, - [SMALL_STATE(1841)] = 60571, - [SMALL_STATE(1842)] = 60584, - [SMALL_STATE(1843)] = 60597, - [SMALL_STATE(1844)] = 60614, - [SMALL_STATE(1845)] = 60631, - [SMALL_STATE(1846)] = 60646, - [SMALL_STATE(1847)] = 60661, - [SMALL_STATE(1848)] = 60678, - [SMALL_STATE(1849)] = 60695, - [SMALL_STATE(1850)] = 60710, - [SMALL_STATE(1851)] = 60725, - [SMALL_STATE(1852)] = 60738, - [SMALL_STATE(1853)] = 60753, - [SMALL_STATE(1854)] = 60768, - [SMALL_STATE(1855)] = 60783, - [SMALL_STATE(1856)] = 60800, - [SMALL_STATE(1857)] = 60817, - [SMALL_STATE(1858)] = 60834, - [SMALL_STATE(1859)] = 60851, - [SMALL_STATE(1860)] = 60868, - [SMALL_STATE(1861)] = 60882, - [SMALL_STATE(1862)] = 60896, - [SMALL_STATE(1863)] = 60906, - [SMALL_STATE(1864)] = 60920, - [SMALL_STATE(1865)] = 60934, - [SMALL_STATE(1866)] = 60946, - [SMALL_STATE(1867)] = 60960, - [SMALL_STATE(1868)] = 60974, - [SMALL_STATE(1869)] = 60988, - [SMALL_STATE(1870)] = 61002, - [SMALL_STATE(1871)] = 61016, - [SMALL_STATE(1872)] = 61026, - [SMALL_STATE(1873)] = 61040, - [SMALL_STATE(1874)] = 61054, - [SMALL_STATE(1875)] = 61064, - [SMALL_STATE(1876)] = 61078, - [SMALL_STATE(1877)] = 61092, - [SMALL_STATE(1878)] = 61106, - [SMALL_STATE(1879)] = 61120, - [SMALL_STATE(1880)] = 61134, - [SMALL_STATE(1881)] = 61144, - [SMALL_STATE(1882)] = 61158, - [SMALL_STATE(1883)] = 61172, - [SMALL_STATE(1884)] = 61186, - [SMALL_STATE(1885)] = 61198, - [SMALL_STATE(1886)] = 61210, - [SMALL_STATE(1887)] = 61222, - [SMALL_STATE(1888)] = 61232, - [SMALL_STATE(1889)] = 61246, - [SMALL_STATE(1890)] = 61260, - [SMALL_STATE(1891)] = 61272, - [SMALL_STATE(1892)] = 61286, - [SMALL_STATE(1893)] = 61300, - [SMALL_STATE(1894)] = 61312, - [SMALL_STATE(1895)] = 61326, - [SMALL_STATE(1896)] = 61340, - [SMALL_STATE(1897)] = 61354, - [SMALL_STATE(1898)] = 61368, - [SMALL_STATE(1899)] = 61382, - [SMALL_STATE(1900)] = 61396, - [SMALL_STATE(1901)] = 61408, - [SMALL_STATE(1902)] = 61420, - [SMALL_STATE(1903)] = 61432, - [SMALL_STATE(1904)] = 61446, - [SMALL_STATE(1905)] = 61460, - [SMALL_STATE(1906)] = 61474, - [SMALL_STATE(1907)] = 61488, - [SMALL_STATE(1908)] = 61500, - [SMALL_STATE(1909)] = 61512, - [SMALL_STATE(1910)] = 61524, - [SMALL_STATE(1911)] = 61536, - [SMALL_STATE(1912)] = 61548, - [SMALL_STATE(1913)] = 61562, - [SMALL_STATE(1914)] = 61576, - [SMALL_STATE(1915)] = 61590, - [SMALL_STATE(1916)] = 61604, - [SMALL_STATE(1917)] = 61616, - [SMALL_STATE(1918)] = 61628, - [SMALL_STATE(1919)] = 61642, - [SMALL_STATE(1920)] = 61656, - [SMALL_STATE(1921)] = 61670, - [SMALL_STATE(1922)] = 61682, - [SMALL_STATE(1923)] = 61696, - [SMALL_STATE(1924)] = 61706, - [SMALL_STATE(1925)] = 61716, - [SMALL_STATE(1926)] = 61730, - [SMALL_STATE(1927)] = 61740, - [SMALL_STATE(1928)] = 61754, - [SMALL_STATE(1929)] = 61768, - [SMALL_STATE(1930)] = 61782, - [SMALL_STATE(1931)] = 61796, - [SMALL_STATE(1932)] = 61810, - [SMALL_STATE(1933)] = 61824, - [SMALL_STATE(1934)] = 61838, - [SMALL_STATE(1935)] = 61848, - [SMALL_STATE(1936)] = 61858, - [SMALL_STATE(1937)] = 61872, - [SMALL_STATE(1938)] = 61886, - [SMALL_STATE(1939)] = 61900, - [SMALL_STATE(1940)] = 61914, - [SMALL_STATE(1941)] = 61928, - [SMALL_STATE(1942)] = 61942, - [SMALL_STATE(1943)] = 61956, - [SMALL_STATE(1944)] = 61970, - [SMALL_STATE(1945)] = 61980, - [SMALL_STATE(1946)] = 61992, - [SMALL_STATE(1947)] = 62004, - [SMALL_STATE(1948)] = 62018, - [SMALL_STATE(1949)] = 62032, - [SMALL_STATE(1950)] = 62046, - [SMALL_STATE(1951)] = 62058, - [SMALL_STATE(1952)] = 62070, - [SMALL_STATE(1953)] = 62084, - [SMALL_STATE(1954)] = 62098, - [SMALL_STATE(1955)] = 62112, - [SMALL_STATE(1956)] = 62126, - [SMALL_STATE(1957)] = 62140, - [SMALL_STATE(1958)] = 62154, - [SMALL_STATE(1959)] = 62168, - [SMALL_STATE(1960)] = 62182, - [SMALL_STATE(1961)] = 62196, - [SMALL_STATE(1962)] = 62210, - [SMALL_STATE(1963)] = 62224, - [SMALL_STATE(1964)] = 62234, - [SMALL_STATE(1965)] = 62246, - [SMALL_STATE(1966)] = 62260, - [SMALL_STATE(1967)] = 62274, - [SMALL_STATE(1968)] = 62288, - [SMALL_STATE(1969)] = 62302, - [SMALL_STATE(1970)] = 62316, - [SMALL_STATE(1971)] = 62326, - [SMALL_STATE(1972)] = 62338, - [SMALL_STATE(1973)] = 62352, - [SMALL_STATE(1974)] = 62366, - [SMALL_STATE(1975)] = 62380, - [SMALL_STATE(1976)] = 62394, - [SMALL_STATE(1977)] = 62408, - [SMALL_STATE(1978)] = 62422, - [SMALL_STATE(1979)] = 62436, - [SMALL_STATE(1980)] = 62450, - [SMALL_STATE(1981)] = 62464, - [SMALL_STATE(1982)] = 62478, - [SMALL_STATE(1983)] = 62492, - [SMALL_STATE(1984)] = 62506, - [SMALL_STATE(1985)] = 62520, - [SMALL_STATE(1986)] = 62530, - [SMALL_STATE(1987)] = 62542, - [SMALL_STATE(1988)] = 62556, - [SMALL_STATE(1989)] = 62570, - [SMALL_STATE(1990)] = 62584, - [SMALL_STATE(1991)] = 62596, - [SMALL_STATE(1992)] = 62610, - [SMALL_STATE(1993)] = 62624, - [SMALL_STATE(1994)] = 62638, - [SMALL_STATE(1995)] = 62648, - [SMALL_STATE(1996)] = 62662, - [SMALL_STATE(1997)] = 62676, - [SMALL_STATE(1998)] = 62690, - [SMALL_STATE(1999)] = 62704, - [SMALL_STATE(2000)] = 62718, - [SMALL_STATE(2001)] = 62732, - [SMALL_STATE(2002)] = 62746, - [SMALL_STATE(2003)] = 62760, - [SMALL_STATE(2004)] = 62772, - [SMALL_STATE(2005)] = 62786, - [SMALL_STATE(2006)] = 62798, - [SMALL_STATE(2007)] = 62812, - [SMALL_STATE(2008)] = 62826, - [SMALL_STATE(2009)] = 62840, - [SMALL_STATE(2010)] = 62850, - [SMALL_STATE(2011)] = 62864, - [SMALL_STATE(2012)] = 62876, - [SMALL_STATE(2013)] = 62888, - [SMALL_STATE(2014)] = 62902, - [SMALL_STATE(2015)] = 62916, - [SMALL_STATE(2016)] = 62930, - [SMALL_STATE(2017)] = 62944, - [SMALL_STATE(2018)] = 62958, - [SMALL_STATE(2019)] = 62970, - [SMALL_STATE(2020)] = 62982, - [SMALL_STATE(2021)] = 62996, - [SMALL_STATE(2022)] = 63006, - [SMALL_STATE(2023)] = 63020, - [SMALL_STATE(2024)] = 63034, - [SMALL_STATE(2025)] = 63048, - [SMALL_STATE(2026)] = 63062, - [SMALL_STATE(2027)] = 63076, - [SMALL_STATE(2028)] = 63090, - [SMALL_STATE(2029)] = 63104, - [SMALL_STATE(2030)] = 63116, - [SMALL_STATE(2031)] = 63130, - [SMALL_STATE(2032)] = 63144, - [SMALL_STATE(2033)] = 63158, - [SMALL_STATE(2034)] = 63172, - [SMALL_STATE(2035)] = 63186, - [SMALL_STATE(2036)] = 63200, - [SMALL_STATE(2037)] = 63214, - [SMALL_STATE(2038)] = 63226, - [SMALL_STATE(2039)] = 63240, - [SMALL_STATE(2040)] = 63254, - [SMALL_STATE(2041)] = 63268, - [SMALL_STATE(2042)] = 63282, - [SMALL_STATE(2043)] = 63296, - [SMALL_STATE(2044)] = 63310, - [SMALL_STATE(2045)] = 63324, - [SMALL_STATE(2046)] = 63338, - [SMALL_STATE(2047)] = 63352, - [SMALL_STATE(2048)] = 63366, - [SMALL_STATE(2049)] = 63380, - [SMALL_STATE(2050)] = 63394, - [SMALL_STATE(2051)] = 63408, - [SMALL_STATE(2052)] = 63422, - [SMALL_STATE(2053)] = 63432, - [SMALL_STATE(2054)] = 63446, - [SMALL_STATE(2055)] = 63460, - [SMALL_STATE(2056)] = 63474, - [SMALL_STATE(2057)] = 63486, - [SMALL_STATE(2058)] = 63500, - [SMALL_STATE(2059)] = 63514, - [SMALL_STATE(2060)] = 63524, - [SMALL_STATE(2061)] = 63538, - [SMALL_STATE(2062)] = 63548, - [SMALL_STATE(2063)] = 63562, - [SMALL_STATE(2064)] = 63572, - [SMALL_STATE(2065)] = 63582, - [SMALL_STATE(2066)] = 63596, - [SMALL_STATE(2067)] = 63610, - [SMALL_STATE(2068)] = 63624, - [SMALL_STATE(2069)] = 63638, - [SMALL_STATE(2070)] = 63652, - [SMALL_STATE(2071)] = 63666, - [SMALL_STATE(2072)] = 63680, - [SMALL_STATE(2073)] = 63690, - [SMALL_STATE(2074)] = 63704, - [SMALL_STATE(2075)] = 63718, - [SMALL_STATE(2076)] = 63732, - [SMALL_STATE(2077)] = 63746, - [SMALL_STATE(2078)] = 63760, - [SMALL_STATE(2079)] = 63774, - [SMALL_STATE(2080)] = 63788, - [SMALL_STATE(2081)] = 63798, - [SMALL_STATE(2082)] = 63808, - [SMALL_STATE(2083)] = 63822, - [SMALL_STATE(2084)] = 63836, - [SMALL_STATE(2085)] = 63850, - [SMALL_STATE(2086)] = 63864, - [SMALL_STATE(2087)] = 63874, - [SMALL_STATE(2088)] = 63888, - [SMALL_STATE(2089)] = 63902, - [SMALL_STATE(2090)] = 63916, - [SMALL_STATE(2091)] = 63930, - [SMALL_STATE(2092)] = 63944, - [SMALL_STATE(2093)] = 63958, - [SMALL_STATE(2094)] = 63972, - [SMALL_STATE(2095)] = 63986, - [SMALL_STATE(2096)] = 63996, - [SMALL_STATE(2097)] = 64010, - [SMALL_STATE(2098)] = 64024, - [SMALL_STATE(2099)] = 64038, - [SMALL_STATE(2100)] = 64048, - [SMALL_STATE(2101)] = 64062, - [SMALL_STATE(2102)] = 64076, - [SMALL_STATE(2103)] = 64090, - [SMALL_STATE(2104)] = 64100, - [SMALL_STATE(2105)] = 64114, - [SMALL_STATE(2106)] = 64128, - [SMALL_STATE(2107)] = 64142, - [SMALL_STATE(2108)] = 64152, - [SMALL_STATE(2109)] = 64166, - [SMALL_STATE(2110)] = 64180, - [SMALL_STATE(2111)] = 64194, - [SMALL_STATE(2112)] = 64208, - [SMALL_STATE(2113)] = 64222, - [SMALL_STATE(2114)] = 64236, - [SMALL_STATE(2115)] = 64250, - [SMALL_STATE(2116)] = 64264, - [SMALL_STATE(2117)] = 64276, - [SMALL_STATE(2118)] = 64290, - [SMALL_STATE(2119)] = 64304, - [SMALL_STATE(2120)] = 64318, - [SMALL_STATE(2121)] = 64332, - [SMALL_STATE(2122)] = 64344, - [SMALL_STATE(2123)] = 64358, - [SMALL_STATE(2124)] = 64372, - [SMALL_STATE(2125)] = 64386, - [SMALL_STATE(2126)] = 64397, - [SMALL_STATE(2127)] = 64408, - [SMALL_STATE(2128)] = 64419, - [SMALL_STATE(2129)] = 64430, - [SMALL_STATE(2130)] = 64441, - [SMALL_STATE(2131)] = 64450, - [SMALL_STATE(2132)] = 64461, - [SMALL_STATE(2133)] = 64470, - [SMALL_STATE(2134)] = 64481, - [SMALL_STATE(2135)] = 64492, - [SMALL_STATE(2136)] = 64503, - [SMALL_STATE(2137)] = 64514, - [SMALL_STATE(2138)] = 64525, - [SMALL_STATE(2139)] = 64536, - [SMALL_STATE(2140)] = 64547, - [SMALL_STATE(2141)] = 64558, - [SMALL_STATE(2142)] = 64569, - [SMALL_STATE(2143)] = 64580, - [SMALL_STATE(2144)] = 64591, - [SMALL_STATE(2145)] = 64602, - [SMALL_STATE(2146)] = 64613, - [SMALL_STATE(2147)] = 64624, - [SMALL_STATE(2148)] = 64635, - [SMALL_STATE(2149)] = 64646, - [SMALL_STATE(2150)] = 64657, - [SMALL_STATE(2151)] = 64668, - [SMALL_STATE(2152)] = 64679, - [SMALL_STATE(2153)] = 64690, - [SMALL_STATE(2154)] = 64701, - [SMALL_STATE(2155)] = 64712, - [SMALL_STATE(2156)] = 64723, - [SMALL_STATE(2157)] = 64734, - [SMALL_STATE(2158)] = 64745, - [SMALL_STATE(2159)] = 64756, - [SMALL_STATE(2160)] = 64765, - [SMALL_STATE(2161)] = 64776, - [SMALL_STATE(2162)] = 64787, - [SMALL_STATE(2163)] = 64798, - [SMALL_STATE(2164)] = 64809, - [SMALL_STATE(2165)] = 64820, - [SMALL_STATE(2166)] = 64831, - [SMALL_STATE(2167)] = 64842, - [SMALL_STATE(2168)] = 64853, - [SMALL_STATE(2169)] = 64864, - [SMALL_STATE(2170)] = 64873, - [SMALL_STATE(2171)] = 64884, - [SMALL_STATE(2172)] = 64895, - [SMALL_STATE(2173)] = 64906, - [SMALL_STATE(2174)] = 64917, - [SMALL_STATE(2175)] = 64928, - [SMALL_STATE(2176)] = 64939, - [SMALL_STATE(2177)] = 64950, - [SMALL_STATE(2178)] = 64961, - [SMALL_STATE(2179)] = 64972, - [SMALL_STATE(2180)] = 64983, - [SMALL_STATE(2181)] = 64994, - [SMALL_STATE(2182)] = 65005, - [SMALL_STATE(2183)] = 65016, - [SMALL_STATE(2184)] = 65027, - [SMALL_STATE(2185)] = 65036, - [SMALL_STATE(2186)] = 65045, - [SMALL_STATE(2187)] = 65056, - [SMALL_STATE(2188)] = 65067, - [SMALL_STATE(2189)] = 65078, - [SMALL_STATE(2190)] = 65089, - [SMALL_STATE(2191)] = 65100, - [SMALL_STATE(2192)] = 65111, - [SMALL_STATE(2193)] = 65122, - [SMALL_STATE(2194)] = 65133, - [SMALL_STATE(2195)] = 65144, - [SMALL_STATE(2196)] = 65155, - [SMALL_STATE(2197)] = 65164, - [SMALL_STATE(2198)] = 65173, - [SMALL_STATE(2199)] = 65182, - [SMALL_STATE(2200)] = 65193, - [SMALL_STATE(2201)] = 65204, - [SMALL_STATE(2202)] = 65215, - [SMALL_STATE(2203)] = 65226, - [SMALL_STATE(2204)] = 65237, - [SMALL_STATE(2205)] = 65248, - [SMALL_STATE(2206)] = 65259, - [SMALL_STATE(2207)] = 65270, - [SMALL_STATE(2208)] = 65281, - [SMALL_STATE(2209)] = 65292, - [SMALL_STATE(2210)] = 65303, - [SMALL_STATE(2211)] = 65314, - [SMALL_STATE(2212)] = 65325, - [SMALL_STATE(2213)] = 65336, - [SMALL_STATE(2214)] = 65347, - [SMALL_STATE(2215)] = 65358, - [SMALL_STATE(2216)] = 65367, - [SMALL_STATE(2217)] = 65378, - [SMALL_STATE(2218)] = 65389, - [SMALL_STATE(2219)] = 65400, - [SMALL_STATE(2220)] = 65409, - [SMALL_STATE(2221)] = 65420, - [SMALL_STATE(2222)] = 65431, - [SMALL_STATE(2223)] = 65442, - [SMALL_STATE(2224)] = 65453, - [SMALL_STATE(2225)] = 65464, - [SMALL_STATE(2226)] = 65475, - [SMALL_STATE(2227)] = 65486, - [SMALL_STATE(2228)] = 65495, - [SMALL_STATE(2229)] = 65506, - [SMALL_STATE(2230)] = 65517, - [SMALL_STATE(2231)] = 65528, - [SMALL_STATE(2232)] = 65539, - [SMALL_STATE(2233)] = 65550, - [SMALL_STATE(2234)] = 65559, - [SMALL_STATE(2235)] = 65570, - [SMALL_STATE(2236)] = 65581, - [SMALL_STATE(2237)] = 65592, - [SMALL_STATE(2238)] = 65603, - [SMALL_STATE(2239)] = 65614, - [SMALL_STATE(2240)] = 65625, - [SMALL_STATE(2241)] = 65636, - [SMALL_STATE(2242)] = 65647, - [SMALL_STATE(2243)] = 65658, - [SMALL_STATE(2244)] = 65669, - [SMALL_STATE(2245)] = 65680, - [SMALL_STATE(2246)] = 65691, - [SMALL_STATE(2247)] = 65700, - [SMALL_STATE(2248)] = 65711, - [SMALL_STATE(2249)] = 65722, - [SMALL_STATE(2250)] = 65733, - [SMALL_STATE(2251)] = 65742, - [SMALL_STATE(2252)] = 65753, - [SMALL_STATE(2253)] = 65764, - [SMALL_STATE(2254)] = 65775, - [SMALL_STATE(2255)] = 65786, - [SMALL_STATE(2256)] = 65797, - [SMALL_STATE(2257)] = 65808, - [SMALL_STATE(2258)] = 65819, - [SMALL_STATE(2259)] = 65828, - [SMALL_STATE(2260)] = 65839, - [SMALL_STATE(2261)] = 65850, - [SMALL_STATE(2262)] = 65861, - [SMALL_STATE(2263)] = 65872, - [SMALL_STATE(2264)] = 65883, - [SMALL_STATE(2265)] = 65894, - [SMALL_STATE(2266)] = 65905, - [SMALL_STATE(2267)] = 65914, - [SMALL_STATE(2268)] = 65925, - [SMALL_STATE(2269)] = 65936, - [SMALL_STATE(2270)] = 65947, - [SMALL_STATE(2271)] = 65958, - [SMALL_STATE(2272)] = 65969, - [SMALL_STATE(2273)] = 65980, - [SMALL_STATE(2274)] = 65991, - [SMALL_STATE(2275)] = 66002, - [SMALL_STATE(2276)] = 66013, - [SMALL_STATE(2277)] = 66022, - [SMALL_STATE(2278)] = 66033, - [SMALL_STATE(2279)] = 66044, - [SMALL_STATE(2280)] = 66055, - [SMALL_STATE(2281)] = 66066, - [SMALL_STATE(2282)] = 66077, - [SMALL_STATE(2283)] = 66088, - [SMALL_STATE(2284)] = 66099, - [SMALL_STATE(2285)] = 66110, - [SMALL_STATE(2286)] = 66121, - [SMALL_STATE(2287)] = 66130, - [SMALL_STATE(2288)] = 66141, - [SMALL_STATE(2289)] = 66152, - [SMALL_STATE(2290)] = 66163, - [SMALL_STATE(2291)] = 66174, - [SMALL_STATE(2292)] = 66185, - [SMALL_STATE(2293)] = 66194, - [SMALL_STATE(2294)] = 66203, - [SMALL_STATE(2295)] = 66214, - [SMALL_STATE(2296)] = 66225, - [SMALL_STATE(2297)] = 66234, - [SMALL_STATE(2298)] = 66245, - [SMALL_STATE(2299)] = 66254, - [SMALL_STATE(2300)] = 66263, - [SMALL_STATE(2301)] = 66274, - [SMALL_STATE(2302)] = 66285, - [SMALL_STATE(2303)] = 66296, - [SMALL_STATE(2304)] = 66305, - [SMALL_STATE(2305)] = 66316, - [SMALL_STATE(2306)] = 66327, - [SMALL_STATE(2307)] = 66338, - [SMALL_STATE(2308)] = 66347, - [SMALL_STATE(2309)] = 66356, - [SMALL_STATE(2310)] = 66367, - [SMALL_STATE(2311)] = 66376, - [SMALL_STATE(2312)] = 66384, - [SMALL_STATE(2313)] = 66392, - [SMALL_STATE(2314)] = 66400, - [SMALL_STATE(2315)] = 66408, - [SMALL_STATE(2316)] = 66416, - [SMALL_STATE(2317)] = 66424, - [SMALL_STATE(2318)] = 66432, - [SMALL_STATE(2319)] = 66440, - [SMALL_STATE(2320)] = 66448, - [SMALL_STATE(2321)] = 66456, - [SMALL_STATE(2322)] = 66464, - [SMALL_STATE(2323)] = 66472, - [SMALL_STATE(2324)] = 66480, - [SMALL_STATE(2325)] = 66488, - [SMALL_STATE(2326)] = 66496, - [SMALL_STATE(2327)] = 66504, - [SMALL_STATE(2328)] = 66512, - [SMALL_STATE(2329)] = 66520, - [SMALL_STATE(2330)] = 66528, - [SMALL_STATE(2331)] = 66536, - [SMALL_STATE(2332)] = 66544, - [SMALL_STATE(2333)] = 66552, - [SMALL_STATE(2334)] = 66560, - [SMALL_STATE(2335)] = 66568, - [SMALL_STATE(2336)] = 66576, - [SMALL_STATE(2337)] = 66584, - [SMALL_STATE(2338)] = 66592, - [SMALL_STATE(2339)] = 66600, - [SMALL_STATE(2340)] = 66608, - [SMALL_STATE(2341)] = 66616, - [SMALL_STATE(2342)] = 66624, - [SMALL_STATE(2343)] = 66632, - [SMALL_STATE(2344)] = 66640, - [SMALL_STATE(2345)] = 66648, - [SMALL_STATE(2346)] = 66656, - [SMALL_STATE(2347)] = 66664, - [SMALL_STATE(2348)] = 66672, - [SMALL_STATE(2349)] = 66680, - [SMALL_STATE(2350)] = 66688, - [SMALL_STATE(2351)] = 66696, - [SMALL_STATE(2352)] = 66704, - [SMALL_STATE(2353)] = 66712, - [SMALL_STATE(2354)] = 66720, - [SMALL_STATE(2355)] = 66728, - [SMALL_STATE(2356)] = 66736, - [SMALL_STATE(2357)] = 66744, - [SMALL_STATE(2358)] = 66752, - [SMALL_STATE(2359)] = 66760, - [SMALL_STATE(2360)] = 66768, - [SMALL_STATE(2361)] = 66776, - [SMALL_STATE(2362)] = 66784, - [SMALL_STATE(2363)] = 66792, - [SMALL_STATE(2364)] = 66800, - [SMALL_STATE(2365)] = 66808, - [SMALL_STATE(2366)] = 66816, - [SMALL_STATE(2367)] = 66824, - [SMALL_STATE(2368)] = 66832, - [SMALL_STATE(2369)] = 66840, - [SMALL_STATE(2370)] = 66848, - [SMALL_STATE(2371)] = 66856, - [SMALL_STATE(2372)] = 66864, - [SMALL_STATE(2373)] = 66872, - [SMALL_STATE(2374)] = 66880, - [SMALL_STATE(2375)] = 66888, - [SMALL_STATE(2376)] = 66896, - [SMALL_STATE(2377)] = 66904, - [SMALL_STATE(2378)] = 66912, - [SMALL_STATE(2379)] = 66920, - [SMALL_STATE(2380)] = 66928, - [SMALL_STATE(2381)] = 66936, - [SMALL_STATE(2382)] = 66944, - [SMALL_STATE(2383)] = 66952, - [SMALL_STATE(2384)] = 66960, - [SMALL_STATE(2385)] = 66968, - [SMALL_STATE(2386)] = 66976, - [SMALL_STATE(2387)] = 66984, - [SMALL_STATE(2388)] = 66992, - [SMALL_STATE(2389)] = 67000, - [SMALL_STATE(2390)] = 67008, - [SMALL_STATE(2391)] = 67016, - [SMALL_STATE(2392)] = 67024, - [SMALL_STATE(2393)] = 67032, - [SMALL_STATE(2394)] = 67040, - [SMALL_STATE(2395)] = 67048, - [SMALL_STATE(2396)] = 67056, - [SMALL_STATE(2397)] = 67064, - [SMALL_STATE(2398)] = 67072, - [SMALL_STATE(2399)] = 67080, - [SMALL_STATE(2400)] = 67088, - [SMALL_STATE(2401)] = 67096, - [SMALL_STATE(2402)] = 67104, - [SMALL_STATE(2403)] = 67112, - [SMALL_STATE(2404)] = 67120, - [SMALL_STATE(2405)] = 67128, - [SMALL_STATE(2406)] = 67136, - [SMALL_STATE(2407)] = 67144, - [SMALL_STATE(2408)] = 67152, - [SMALL_STATE(2409)] = 67160, - [SMALL_STATE(2410)] = 67168, - [SMALL_STATE(2411)] = 67176, - [SMALL_STATE(2412)] = 67184, - [SMALL_STATE(2413)] = 67192, - [SMALL_STATE(2414)] = 67200, - [SMALL_STATE(2415)] = 67208, - [SMALL_STATE(2416)] = 67216, - [SMALL_STATE(2417)] = 67224, - [SMALL_STATE(2418)] = 67232, - [SMALL_STATE(2419)] = 67240, - [SMALL_STATE(2420)] = 67248, - [SMALL_STATE(2421)] = 67256, - [SMALL_STATE(2422)] = 67264, - [SMALL_STATE(2423)] = 67272, - [SMALL_STATE(2424)] = 67280, - [SMALL_STATE(2425)] = 67288, - [SMALL_STATE(2426)] = 67296, - [SMALL_STATE(2427)] = 67304, - [SMALL_STATE(2428)] = 67312, - [SMALL_STATE(2429)] = 67320, - [SMALL_STATE(2430)] = 67328, - [SMALL_STATE(2431)] = 67336, - [SMALL_STATE(2432)] = 67344, - [SMALL_STATE(2433)] = 67352, - [SMALL_STATE(2434)] = 67360, - [SMALL_STATE(2435)] = 67368, - [SMALL_STATE(2436)] = 67376, - [SMALL_STATE(2437)] = 67384, - [SMALL_STATE(2438)] = 67392, - [SMALL_STATE(2439)] = 67400, - [SMALL_STATE(2440)] = 67408, - [SMALL_STATE(2441)] = 67416, - [SMALL_STATE(2442)] = 67424, - [SMALL_STATE(2443)] = 67432, - [SMALL_STATE(2444)] = 67440, - [SMALL_STATE(2445)] = 67448, - [SMALL_STATE(2446)] = 67456, - [SMALL_STATE(2447)] = 67464, - [SMALL_STATE(2448)] = 67472, - [SMALL_STATE(2449)] = 67480, - [SMALL_STATE(2450)] = 67488, - [SMALL_STATE(2451)] = 67496, - [SMALL_STATE(2452)] = 67504, - [SMALL_STATE(2453)] = 67512, - [SMALL_STATE(2454)] = 67520, - [SMALL_STATE(2455)] = 67528, - [SMALL_STATE(2456)] = 67536, - [SMALL_STATE(2457)] = 67544, - [SMALL_STATE(2458)] = 67552, - [SMALL_STATE(2459)] = 67560, - [SMALL_STATE(2460)] = 67568, - [SMALL_STATE(2461)] = 67576, - [SMALL_STATE(2462)] = 67584, - [SMALL_STATE(2463)] = 67592, - [SMALL_STATE(2464)] = 67600, - [SMALL_STATE(2465)] = 67608, - [SMALL_STATE(2466)] = 67616, - [SMALL_STATE(2467)] = 67624, - [SMALL_STATE(2468)] = 67632, - [SMALL_STATE(2469)] = 67640, - [SMALL_STATE(2470)] = 67648, - [SMALL_STATE(2471)] = 67656, - [SMALL_STATE(2472)] = 67664, - [SMALL_STATE(2473)] = 67672, - [SMALL_STATE(2474)] = 67680, - [SMALL_STATE(2475)] = 67688, - [SMALL_STATE(2476)] = 67696, - [SMALL_STATE(2477)] = 67704, - [SMALL_STATE(2478)] = 67712, - [SMALL_STATE(2479)] = 67720, - [SMALL_STATE(2480)] = 67728, - [SMALL_STATE(2481)] = 67736, - [SMALL_STATE(2482)] = 67744, - [SMALL_STATE(2483)] = 67752, - [SMALL_STATE(2484)] = 67760, - [SMALL_STATE(2485)] = 67768, - [SMALL_STATE(2486)] = 67776, - [SMALL_STATE(2487)] = 67784, - [SMALL_STATE(2488)] = 67792, - [SMALL_STATE(2489)] = 67800, - [SMALL_STATE(2490)] = 67808, - [SMALL_STATE(2491)] = 67816, - [SMALL_STATE(2492)] = 67824, - [SMALL_STATE(2493)] = 67832, - [SMALL_STATE(2494)] = 67840, - [SMALL_STATE(2495)] = 67848, - [SMALL_STATE(2496)] = 67856, - [SMALL_STATE(2497)] = 67864, - [SMALL_STATE(2498)] = 67872, - [SMALL_STATE(2499)] = 67880, - [SMALL_STATE(2500)] = 67888, - [SMALL_STATE(2501)] = 67896, - [SMALL_STATE(2502)] = 67904, - [SMALL_STATE(2503)] = 67912, - [SMALL_STATE(2504)] = 67920, - [SMALL_STATE(2505)] = 67928, - [SMALL_STATE(2506)] = 67936, - [SMALL_STATE(2507)] = 67944, - [SMALL_STATE(2508)] = 67952, - [SMALL_STATE(2509)] = 67960, - [SMALL_STATE(2510)] = 67968, - [SMALL_STATE(2511)] = 67976, - [SMALL_STATE(2512)] = 67984, - [SMALL_STATE(2513)] = 67992, - [SMALL_STATE(2514)] = 68000, - [SMALL_STATE(2515)] = 68008, - [SMALL_STATE(2516)] = 68016, - [SMALL_STATE(2517)] = 68024, - [SMALL_STATE(2518)] = 68032, - [SMALL_STATE(2519)] = 68040, - [SMALL_STATE(2520)] = 68048, - [SMALL_STATE(2521)] = 68056, - [SMALL_STATE(2522)] = 68064, - [SMALL_STATE(2523)] = 68072, - [SMALL_STATE(2524)] = 68080, - [SMALL_STATE(2525)] = 68088, - [SMALL_STATE(2526)] = 68096, - [SMALL_STATE(2527)] = 68104, - [SMALL_STATE(2528)] = 68112, - [SMALL_STATE(2529)] = 68120, - [SMALL_STATE(2530)] = 68128, - [SMALL_STATE(2531)] = 68136, - [SMALL_STATE(2532)] = 68144, - [SMALL_STATE(2533)] = 68152, - [SMALL_STATE(2534)] = 68160, - [SMALL_STATE(2535)] = 68168, - [SMALL_STATE(2536)] = 68176, - [SMALL_STATE(2537)] = 68184, - [SMALL_STATE(2538)] = 68192, - [SMALL_STATE(2539)] = 68200, - [SMALL_STATE(2540)] = 68208, - [SMALL_STATE(2541)] = 68216, - [SMALL_STATE(2542)] = 68224, - [SMALL_STATE(2543)] = 68232, + [SMALL_STATE(647)] = 0, + [SMALL_STATE(648)] = 129, + [SMALL_STATE(649)] = 258, + [SMALL_STATE(650)] = 387, + [SMALL_STATE(651)] = 516, + [SMALL_STATE(652)] = 645, + [SMALL_STATE(653)] = 774, + [SMALL_STATE(654)] = 903, + [SMALL_STATE(655)] = 1032, + [SMALL_STATE(656)] = 1161, + [SMALL_STATE(657)] = 1290, + [SMALL_STATE(658)] = 1419, + [SMALL_STATE(659)] = 1548, + [SMALL_STATE(660)] = 1677, + [SMALL_STATE(661)] = 1806, + [SMALL_STATE(662)] = 1935, + [SMALL_STATE(663)] = 2064, + [SMALL_STATE(664)] = 2193, + [SMALL_STATE(665)] = 2322, + [SMALL_STATE(666)] = 2451, + [SMALL_STATE(667)] = 2580, + [SMALL_STATE(668)] = 2709, + [SMALL_STATE(669)] = 2838, + [SMALL_STATE(670)] = 2967, + [SMALL_STATE(671)] = 3096, + [SMALL_STATE(672)] = 3225, + [SMALL_STATE(673)] = 3354, + [SMALL_STATE(674)] = 3483, + [SMALL_STATE(675)] = 3612, + [SMALL_STATE(676)] = 3741, + [SMALL_STATE(677)] = 3870, + [SMALL_STATE(678)] = 3999, + [SMALL_STATE(679)] = 4128, + [SMALL_STATE(680)] = 4257, + [SMALL_STATE(681)] = 4386, + [SMALL_STATE(682)] = 4515, + [SMALL_STATE(683)] = 4586, + [SMALL_STATE(684)] = 4715, + [SMALL_STATE(685)] = 4844, + [SMALL_STATE(686)] = 4973, + [SMALL_STATE(687)] = 5102, + [SMALL_STATE(688)] = 5231, + [SMALL_STATE(689)] = 5360, + [SMALL_STATE(690)] = 5489, + [SMALL_STATE(691)] = 5618, + [SMALL_STATE(692)] = 5747, + [SMALL_STATE(693)] = 5876, + [SMALL_STATE(694)] = 6005, + [SMALL_STATE(695)] = 6134, + [SMALL_STATE(696)] = 6263, + [SMALL_STATE(697)] = 6392, + [SMALL_STATE(698)] = 6521, + [SMALL_STATE(699)] = 6650, + [SMALL_STATE(700)] = 6779, + [SMALL_STATE(701)] = 6908, + [SMALL_STATE(702)] = 7037, + [SMALL_STATE(703)] = 7166, + [SMALL_STATE(704)] = 7295, + [SMALL_STATE(705)] = 7424, + [SMALL_STATE(706)] = 7553, + [SMALL_STATE(707)] = 7682, + [SMALL_STATE(708)] = 7811, + [SMALL_STATE(709)] = 7940, + [SMALL_STATE(710)] = 8069, + [SMALL_STATE(711)] = 8198, + [SMALL_STATE(712)] = 8327, + [SMALL_STATE(713)] = 8456, + [SMALL_STATE(714)] = 8585, + [SMALL_STATE(715)] = 8714, + [SMALL_STATE(716)] = 8843, + [SMALL_STATE(717)] = 8972, + [SMALL_STATE(718)] = 9101, + [SMALL_STATE(719)] = 9230, + [SMALL_STATE(720)] = 9359, + [SMALL_STATE(721)] = 9488, + [SMALL_STATE(722)] = 9617, + [SMALL_STATE(723)] = 9746, + [SMALL_STATE(724)] = 9875, + [SMALL_STATE(725)] = 10004, + [SMALL_STATE(726)] = 10133, + [SMALL_STATE(727)] = 10262, + [SMALL_STATE(728)] = 10393, + [SMALL_STATE(729)] = 10522, + [SMALL_STATE(730)] = 10651, + [SMALL_STATE(731)] = 10780, + [SMALL_STATE(732)] = 10909, + [SMALL_STATE(733)] = 11038, + [SMALL_STATE(734)] = 11167, + [SMALL_STATE(735)] = 11296, + [SMALL_STATE(736)] = 11425, + [SMALL_STATE(737)] = 11554, + [SMALL_STATE(738)] = 11683, + [SMALL_STATE(739)] = 11812, + [SMALL_STATE(740)] = 11941, + [SMALL_STATE(741)] = 12070, + [SMALL_STATE(742)] = 12199, + [SMALL_STATE(743)] = 12328, + [SMALL_STATE(744)] = 12457, + [SMALL_STATE(745)] = 12586, + [SMALL_STATE(746)] = 12715, + [SMALL_STATE(747)] = 12844, + [SMALL_STATE(748)] = 12973, + [SMALL_STATE(749)] = 13102, + [SMALL_STATE(750)] = 13231, + [SMALL_STATE(751)] = 13360, + [SMALL_STATE(752)] = 13489, + [SMALL_STATE(753)] = 13618, + [SMALL_STATE(754)] = 13747, + [SMALL_STATE(755)] = 13876, + [SMALL_STATE(756)] = 14005, + [SMALL_STATE(757)] = 14134, + [SMALL_STATE(758)] = 14200, + [SMALL_STATE(759)] = 14266, + [SMALL_STATE(760)] = 14332, + [SMALL_STATE(761)] = 14398, + [SMALL_STATE(762)] = 14460, + [SMALL_STATE(763)] = 14530, + [SMALL_STATE(764)] = 14597, + [SMALL_STATE(765)] = 14664, + [SMALL_STATE(766)] = 14720, + [SMALL_STATE(767)] = 14784, + [SMALL_STATE(768)] = 14840, + [SMALL_STATE(769)] = 14902, + [SMALL_STATE(770)] = 14958, + [SMALL_STATE(771)] = 15018, + [SMALL_STATE(772)] = 15082, + [SMALL_STATE(773)] = 15142, + [SMALL_STATE(774)] = 15202, + [SMALL_STATE(775)] = 15258, + [SMALL_STATE(776)] = 15322, + [SMALL_STATE(777)] = 15382, + [SMALL_STATE(778)] = 15438, + [SMALL_STATE(779)] = 15502, + [SMALL_STATE(780)] = 15559, + [SMALL_STATE(781)] = 15618, + [SMALL_STATE(782)] = 15677, + [SMALL_STATE(783)] = 15734, + [SMALL_STATE(784)] = 15789, + [SMALL_STATE(785)] = 15846, + [SMALL_STATE(786)] = 15905, + [SMALL_STATE(787)] = 15962, + [SMALL_STATE(788)] = 16016, + [SMALL_STATE(789)] = 16070, + [SMALL_STATE(790)] = 16124, + [SMALL_STATE(791)] = 16178, + [SMALL_STATE(792)] = 16232, + [SMALL_STATE(793)] = 16286, + [SMALL_STATE(794)] = 16340, + [SMALL_STATE(795)] = 16394, + [SMALL_STATE(796)] = 16448, + [SMALL_STATE(797)] = 16502, + [SMALL_STATE(798)] = 16556, + [SMALL_STATE(799)] = 16614, + [SMALL_STATE(800)] = 16668, + [SMALL_STATE(801)] = 16722, + [SMALL_STATE(802)] = 16776, + [SMALL_STATE(803)] = 16830, + [SMALL_STATE(804)] = 16884, + [SMALL_STATE(805)] = 16938, + [SMALL_STATE(806)] = 16992, + [SMALL_STATE(807)] = 17046, + [SMALL_STATE(808)] = 17100, + [SMALL_STATE(809)] = 17154, + [SMALL_STATE(810)] = 17208, + [SMALL_STATE(811)] = 17262, + [SMALL_STATE(812)] = 17316, + [SMALL_STATE(813)] = 17370, + [SMALL_STATE(814)] = 17424, + [SMALL_STATE(815)] = 17478, + [SMALL_STATE(816)] = 17532, + [SMALL_STATE(817)] = 17586, + [SMALL_STATE(818)] = 17640, + [SMALL_STATE(819)] = 17694, + [SMALL_STATE(820)] = 17748, + [SMALL_STATE(821)] = 17802, + [SMALL_STATE(822)] = 17856, + [SMALL_STATE(823)] = 17910, + [SMALL_STATE(824)] = 17964, + [SMALL_STATE(825)] = 18018, + [SMALL_STATE(826)] = 18072, + [SMALL_STATE(827)] = 18126, + [SMALL_STATE(828)] = 18180, + [SMALL_STATE(829)] = 18234, + [SMALL_STATE(830)] = 18288, + [SMALL_STATE(831)] = 18344, + [SMALL_STATE(832)] = 18398, + [SMALL_STATE(833)] = 18452, + [SMALL_STATE(834)] = 18506, + [SMALL_STATE(835)] = 18560, + [SMALL_STATE(836)] = 18614, + [SMALL_STATE(837)] = 18668, + [SMALL_STATE(838)] = 18722, + [SMALL_STATE(839)] = 18776, + [SMALL_STATE(840)] = 18832, + [SMALL_STATE(841)] = 18886, + [SMALL_STATE(842)] = 18940, + [SMALL_STATE(843)] = 18994, + [SMALL_STATE(844)] = 19048, + [SMALL_STATE(845)] = 19102, + [SMALL_STATE(846)] = 19156, + [SMALL_STATE(847)] = 19210, + [SMALL_STATE(848)] = 19264, + [SMALL_STATE(849)] = 19320, + [SMALL_STATE(850)] = 19374, + [SMALL_STATE(851)] = 19430, + [SMALL_STATE(852)] = 19484, + [SMALL_STATE(853)] = 19538, + [SMALL_STATE(854)] = 19592, + [SMALL_STATE(855)] = 19648, + [SMALL_STATE(856)] = 19702, + [SMALL_STATE(857)] = 19756, + [SMALL_STATE(858)] = 19810, + [SMALL_STATE(859)] = 19866, + [SMALL_STATE(860)] = 19920, + [SMALL_STATE(861)] = 19974, + [SMALL_STATE(862)] = 20028, + [SMALL_STATE(863)] = 20082, + [SMALL_STATE(864)] = 20136, + [SMALL_STATE(865)] = 20190, + [SMALL_STATE(866)] = 20244, + [SMALL_STATE(867)] = 20300, + [SMALL_STATE(868)] = 20354, + [SMALL_STATE(869)] = 20408, + [SMALL_STATE(870)] = 20462, + [SMALL_STATE(871)] = 20516, + [SMALL_STATE(872)] = 20570, + [SMALL_STATE(873)] = 20624, + [SMALL_STATE(874)] = 20678, + [SMALL_STATE(875)] = 20732, + [SMALL_STATE(876)] = 20786, + [SMALL_STATE(877)] = 20840, + [SMALL_STATE(878)] = 20894, + [SMALL_STATE(879)] = 20948, + [SMALL_STATE(880)] = 21002, + [SMALL_STATE(881)] = 21056, + [SMALL_STATE(882)] = 21110, + [SMALL_STATE(883)] = 21164, + [SMALL_STATE(884)] = 21218, + [SMALL_STATE(885)] = 21272, + [SMALL_STATE(886)] = 21326, + [SMALL_STATE(887)] = 21380, + [SMALL_STATE(888)] = 21434, + [SMALL_STATE(889)] = 21488, + [SMALL_STATE(890)] = 21542, + [SMALL_STATE(891)] = 21596, + [SMALL_STATE(892)] = 21650, + [SMALL_STATE(893)] = 21704, + [SMALL_STATE(894)] = 21758, + [SMALL_STATE(895)] = 21812, + [SMALL_STATE(896)] = 21866, + [SMALL_STATE(897)] = 21920, + [SMALL_STATE(898)] = 21974, + [SMALL_STATE(899)] = 22028, + [SMALL_STATE(900)] = 22082, + [SMALL_STATE(901)] = 22136, + [SMALL_STATE(902)] = 22190, + [SMALL_STATE(903)] = 22244, + [SMALL_STATE(904)] = 22298, + [SMALL_STATE(905)] = 22352, + [SMALL_STATE(906)] = 22406, + [SMALL_STATE(907)] = 22460, + [SMALL_STATE(908)] = 22514, + [SMALL_STATE(909)] = 22570, + [SMALL_STATE(910)] = 22624, + [SMALL_STATE(911)] = 22678, + [SMALL_STATE(912)] = 22732, + [SMALL_STATE(913)] = 22786, + [SMALL_STATE(914)] = 22840, + [SMALL_STATE(915)] = 22894, + [SMALL_STATE(916)] = 22948, + [SMALL_STATE(917)] = 23002, + [SMALL_STATE(918)] = 23056, + [SMALL_STATE(919)] = 23110, + [SMALL_STATE(920)] = 23166, + [SMALL_STATE(921)] = 23220, + [SMALL_STATE(922)] = 23274, + [SMALL_STATE(923)] = 23328, + [SMALL_STATE(924)] = 23382, + [SMALL_STATE(925)] = 23436, + [SMALL_STATE(926)] = 23490, + [SMALL_STATE(927)] = 23544, + [SMALL_STATE(928)] = 23598, + [SMALL_STATE(929)] = 23652, + [SMALL_STATE(930)] = 23706, + [SMALL_STATE(931)] = 23760, + [SMALL_STATE(932)] = 23814, + [SMALL_STATE(933)] = 23868, + [SMALL_STATE(934)] = 23924, + [SMALL_STATE(935)] = 23978, + [SMALL_STATE(936)] = 24032, + [SMALL_STATE(937)] = 24086, + [SMALL_STATE(938)] = 24140, + [SMALL_STATE(939)] = 24194, + [SMALL_STATE(940)] = 24248, + [SMALL_STATE(941)] = 24302, + [SMALL_STATE(942)] = 24356, + [SMALL_STATE(943)] = 24410, + [SMALL_STATE(944)] = 24464, + [SMALL_STATE(945)] = 24518, + [SMALL_STATE(946)] = 24572, + [SMALL_STATE(947)] = 24626, + [SMALL_STATE(948)] = 24680, + [SMALL_STATE(949)] = 24734, + [SMALL_STATE(950)] = 24788, + [SMALL_STATE(951)] = 24844, + [SMALL_STATE(952)] = 24898, + [SMALL_STATE(953)] = 24952, + [SMALL_STATE(954)] = 25006, + [SMALL_STATE(955)] = 25060, + [SMALL_STATE(956)] = 25114, + [SMALL_STATE(957)] = 25168, + [SMALL_STATE(958)] = 25222, + [SMALL_STATE(959)] = 25276, + [SMALL_STATE(960)] = 25330, + [SMALL_STATE(961)] = 25386, + [SMALL_STATE(962)] = 25440, + [SMALL_STATE(963)] = 25496, + [SMALL_STATE(964)] = 25550, + [SMALL_STATE(965)] = 25604, + [SMALL_STATE(966)] = 25658, + [SMALL_STATE(967)] = 25712, + [SMALL_STATE(968)] = 25766, + [SMALL_STATE(969)] = 25820, + [SMALL_STATE(970)] = 25874, + [SMALL_STATE(971)] = 25928, + [SMALL_STATE(972)] = 25982, + [SMALL_STATE(973)] = 26036, + [SMALL_STATE(974)] = 26090, + [SMALL_STATE(975)] = 26144, + [SMALL_STATE(976)] = 26200, + [SMALL_STATE(977)] = 26254, + [SMALL_STATE(978)] = 26308, + [SMALL_STATE(979)] = 26362, + [SMALL_STATE(980)] = 26416, + [SMALL_STATE(981)] = 26470, + [SMALL_STATE(982)] = 26524, + [SMALL_STATE(983)] = 26578, + [SMALL_STATE(984)] = 26632, + [SMALL_STATE(985)] = 26686, + [SMALL_STATE(986)] = 26740, + [SMALL_STATE(987)] = 26794, + [SMALL_STATE(988)] = 26848, + [SMALL_STATE(989)] = 26902, + [SMALL_STATE(990)] = 26956, + [SMALL_STATE(991)] = 27010, + [SMALL_STATE(992)] = 27064, + [SMALL_STATE(993)] = 27118, + [SMALL_STATE(994)] = 27172, + [SMALL_STATE(995)] = 27226, + [SMALL_STATE(996)] = 27280, + [SMALL_STATE(997)] = 27334, + [SMALL_STATE(998)] = 27388, + [SMALL_STATE(999)] = 27442, + [SMALL_STATE(1000)] = 27496, + [SMALL_STATE(1001)] = 27550, + [SMALL_STATE(1002)] = 27604, + [SMALL_STATE(1003)] = 27658, + [SMALL_STATE(1004)] = 27712, + [SMALL_STATE(1005)] = 27766, + [SMALL_STATE(1006)] = 27820, + [SMALL_STATE(1007)] = 27874, + [SMALL_STATE(1008)] = 27930, + [SMALL_STATE(1009)] = 27984, + [SMALL_STATE(1010)] = 28038, + [SMALL_STATE(1011)] = 28092, + [SMALL_STATE(1012)] = 28146, + [SMALL_STATE(1013)] = 28200, + [SMALL_STATE(1014)] = 28254, + [SMALL_STATE(1015)] = 28308, + [SMALL_STATE(1016)] = 28362, + [SMALL_STATE(1017)] = 28416, + [SMALL_STATE(1018)] = 28470, + [SMALL_STATE(1019)] = 28528, + [SMALL_STATE(1020)] = 28586, + [SMALL_STATE(1021)] = 28640, + [SMALL_STATE(1022)] = 28694, + [SMALL_STATE(1023)] = 28748, + [SMALL_STATE(1024)] = 28802, + [SMALL_STATE(1025)] = 28856, + [SMALL_STATE(1026)] = 28910, + [SMALL_STATE(1027)] = 28964, + [SMALL_STATE(1028)] = 29018, + [SMALL_STATE(1029)] = 29072, + [SMALL_STATE(1030)] = 29126, + [SMALL_STATE(1031)] = 29180, + [SMALL_STATE(1032)] = 29234, + [SMALL_STATE(1033)] = 29288, + [SMALL_STATE(1034)] = 29342, + [SMALL_STATE(1035)] = 29396, + [SMALL_STATE(1036)] = 29450, + [SMALL_STATE(1037)] = 29504, + [SMALL_STATE(1038)] = 29558, + [SMALL_STATE(1039)] = 29612, + [SMALL_STATE(1040)] = 29666, + [SMALL_STATE(1041)] = 29720, + [SMALL_STATE(1042)] = 29774, + [SMALL_STATE(1043)] = 29828, + [SMALL_STATE(1044)] = 29882, + [SMALL_STATE(1045)] = 29936, + [SMALL_STATE(1046)] = 29991, + [SMALL_STATE(1047)] = 30044, + [SMALL_STATE(1048)] = 30097, + [SMALL_STATE(1049)] = 30150, + [SMALL_STATE(1050)] = 30203, + [SMALL_STATE(1051)] = 30256, + [SMALL_STATE(1052)] = 30309, + [SMALL_STATE(1053)] = 30362, + [SMALL_STATE(1054)] = 30415, + [SMALL_STATE(1055)] = 30468, + [SMALL_STATE(1056)] = 30521, + [SMALL_STATE(1057)] = 30574, + [SMALL_STATE(1058)] = 30627, + [SMALL_STATE(1059)] = 30680, + [SMALL_STATE(1060)] = 30733, + [SMALL_STATE(1061)] = 30786, + [SMALL_STATE(1062)] = 30839, + [SMALL_STATE(1063)] = 30892, + [SMALL_STATE(1064)] = 30945, + [SMALL_STATE(1065)] = 30998, + [SMALL_STATE(1066)] = 31051, + [SMALL_STATE(1067)] = 31104, + [SMALL_STATE(1068)] = 31157, + [SMALL_STATE(1069)] = 31210, + [SMALL_STATE(1070)] = 31263, + [SMALL_STATE(1071)] = 31316, + [SMALL_STATE(1072)] = 31369, + [SMALL_STATE(1073)] = 31422, + [SMALL_STATE(1074)] = 31475, + [SMALL_STATE(1075)] = 31528, + [SMALL_STATE(1076)] = 31581, + [SMALL_STATE(1077)] = 31634, + [SMALL_STATE(1078)] = 31687, + [SMALL_STATE(1079)] = 31740, + [SMALL_STATE(1080)] = 31793, + [SMALL_STATE(1081)] = 31846, + [SMALL_STATE(1082)] = 31899, + [SMALL_STATE(1083)] = 31952, + [SMALL_STATE(1084)] = 32005, + [SMALL_STATE(1085)] = 32058, + [SMALL_STATE(1086)] = 32111, + [SMALL_STATE(1087)] = 32164, + [SMALL_STATE(1088)] = 32217, + [SMALL_STATE(1089)] = 32270, + [SMALL_STATE(1090)] = 32323, + [SMALL_STATE(1091)] = 32376, + [SMALL_STATE(1092)] = 32429, + [SMALL_STATE(1093)] = 32482, + [SMALL_STATE(1094)] = 32535, + [SMALL_STATE(1095)] = 32624, + [SMALL_STATE(1096)] = 32677, + [SMALL_STATE(1097)] = 32730, + [SMALL_STATE(1098)] = 32783, + [SMALL_STATE(1099)] = 32836, + [SMALL_STATE(1100)] = 32889, + [SMALL_STATE(1101)] = 32942, + [SMALL_STATE(1102)] = 32995, + [SMALL_STATE(1103)] = 33048, + [SMALL_STATE(1104)] = 33101, + [SMALL_STATE(1105)] = 33154, + [SMALL_STATE(1106)] = 33207, + [SMALL_STATE(1107)] = 33260, + [SMALL_STATE(1108)] = 33313, + [SMALL_STATE(1109)] = 33402, + [SMALL_STATE(1110)] = 33455, + [SMALL_STATE(1111)] = 33508, + [SMALL_STATE(1112)] = 33561, + [SMALL_STATE(1113)] = 33614, + [SMALL_STATE(1114)] = 33667, + [SMALL_STATE(1115)] = 33720, + [SMALL_STATE(1116)] = 33773, + [SMALL_STATE(1117)] = 33826, + [SMALL_STATE(1118)] = 33879, + [SMALL_STATE(1119)] = 33932, + [SMALL_STATE(1120)] = 33985, + [SMALL_STATE(1121)] = 34038, + [SMALL_STATE(1122)] = 34091, + [SMALL_STATE(1123)] = 34144, + [SMALL_STATE(1124)] = 34197, + [SMALL_STATE(1125)] = 34250, + [SMALL_STATE(1126)] = 34303, + [SMALL_STATE(1127)] = 34356, + [SMALL_STATE(1128)] = 34411, + [SMALL_STATE(1129)] = 34464, + [SMALL_STATE(1130)] = 34517, + [SMALL_STATE(1131)] = 34572, + [SMALL_STATE(1132)] = 34625, + [SMALL_STATE(1133)] = 34678, + [SMALL_STATE(1134)] = 34731, + [SMALL_STATE(1135)] = 34784, + [SMALL_STATE(1136)] = 34837, + [SMALL_STATE(1137)] = 34890, + [SMALL_STATE(1138)] = 34943, + [SMALL_STATE(1139)] = 34996, + [SMALL_STATE(1140)] = 35049, + [SMALL_STATE(1141)] = 35106, + [SMALL_STATE(1142)] = 35159, + [SMALL_STATE(1143)] = 35214, + [SMALL_STATE(1144)] = 35267, + [SMALL_STATE(1145)] = 35320, + [SMALL_STATE(1146)] = 35400, + [SMALL_STATE(1147)] = 35480, + [SMALL_STATE(1148)] = 35566, + [SMALL_STATE(1149)] = 35618, + [SMALL_STATE(1150)] = 35670, + [SMALL_STATE(1151)] = 35730, + [SMALL_STATE(1152)] = 35790, + [SMALL_STATE(1153)] = 35876, + [SMALL_STATE(1154)] = 35956, + [SMALL_STATE(1155)] = 36020, + [SMALL_STATE(1156)] = 36080, + [SMALL_STATE(1157)] = 36140, + [SMALL_STATE(1158)] = 36220, + [SMALL_STATE(1159)] = 36288, + [SMALL_STATE(1160)] = 36350, + [SMALL_STATE(1161)] = 36410, + [SMALL_STATE(1162)] = 36490, + [SMALL_STATE(1163)] = 36562, + [SMALL_STATE(1164)] = 36628, + [SMALL_STATE(1165)] = 36708, + [SMALL_STATE(1166)] = 36778, + [SMALL_STATE(1167)] = 36854, + [SMALL_STATE(1168)] = 36932, + [SMALL_STATE(1169)] = 37017, + [SMALL_STATE(1170)] = 37104, + [SMALL_STATE(1171)] = 37189, + [SMALL_STATE(1172)] = 37246, + [SMALL_STATE(1173)] = 37333, + [SMALL_STATE(1174)] = 37384, + [SMALL_STATE(1175)] = 37471, + [SMALL_STATE(1176)] = 37522, + [SMALL_STATE(1177)] = 37601, + [SMALL_STATE(1178)] = 37688, + [SMALL_STATE(1179)] = 37764, + [SMALL_STATE(1180)] = 37840, + [SMALL_STATE(1181)] = 37896, + [SMALL_STATE(1182)] = 37972, + [SMALL_STATE(1183)] = 38026, + [SMALL_STATE(1184)] = 38102, + [SMALL_STATE(1185)] = 38151, + [SMALL_STATE(1186)] = 38200, + [SMALL_STATE(1187)] = 38273, + [SMALL_STATE(1188)] = 38326, + [SMALL_STATE(1189)] = 38375, + [SMALL_STATE(1190)] = 38426, + [SMALL_STATE(1191)] = 38479, + [SMALL_STATE(1192)] = 38528, + [SMALL_STATE(1193)] = 38579, + [SMALL_STATE(1194)] = 38628, + [SMALL_STATE(1195)] = 38677, + [SMALL_STATE(1196)] = 38766, + [SMALL_STATE(1197)] = 38815, + [SMALL_STATE(1198)] = 38904, + [SMALL_STATE(1199)] = 38953, + [SMALL_STATE(1200)] = 39002, + [SMALL_STATE(1201)] = 39088, + [SMALL_STATE(1202)] = 39166, + [SMALL_STATE(1203)] = 39216, + [SMALL_STATE(1204)] = 39266, + [SMALL_STATE(1205)] = 39352, + [SMALL_STATE(1206)] = 39402, + [SMALL_STATE(1207)] = 39452, + [SMALL_STATE(1208)] = 39530, + [SMALL_STATE(1209)] = 39613, + [SMALL_STATE(1210)] = 39696, + [SMALL_STATE(1211)] = 39779, + [SMALL_STATE(1212)] = 39834, + [SMALL_STATE(1213)] = 39915, + [SMALL_STATE(1214)] = 39998, + [SMALL_STATE(1215)] = 40081, + [SMALL_STATE(1216)] = 40164, + [SMALL_STATE(1217)] = 40247, + [SMALL_STATE(1218)] = 40330, + [SMALL_STATE(1219)] = 40385, + [SMALL_STATE(1220)] = 40456, + [SMALL_STATE(1221)] = 40537, + [SMALL_STATE(1222)] = 40620, + [SMALL_STATE(1223)] = 40703, + [SMALL_STATE(1224)] = 40786, + [SMALL_STATE(1225)] = 40861, + [SMALL_STATE(1226)] = 40916, + [SMALL_STATE(1227)] = 40999, + [SMALL_STATE(1228)] = 41082, + [SMALL_STATE(1229)] = 41165, + [SMALL_STATE(1230)] = 41240, + [SMALL_STATE(1231)] = 41323, + [SMALL_STATE(1232)] = 41404, + [SMALL_STATE(1233)] = 41487, + [SMALL_STATE(1234)] = 41568, + [SMALL_STATE(1235)] = 41651, + [SMALL_STATE(1236)] = 41732, + [SMALL_STATE(1237)] = 41805, + [SMALL_STATE(1238)] = 41888, + [SMALL_STATE(1239)] = 41947, + [SMALL_STATE(1240)] = 42030, + [SMALL_STATE(1241)] = 42113, + [SMALL_STATE(1242)] = 42188, + [SMALL_STATE(1243)] = 42259, + [SMALL_STATE(1244)] = 42320, + [SMALL_STATE(1245)] = 42375, + [SMALL_STATE(1246)] = 42458, + [SMALL_STATE(1247)] = 42525, + [SMALL_STATE(1248)] = 42608, + [SMALL_STATE(1249)] = 42691, + [SMALL_STATE(1250)] = 42774, + [SMALL_STATE(1251)] = 42857, + [SMALL_STATE(1252)] = 42932, + [SMALL_STATE(1253)] = 43015, + [SMALL_STATE(1254)] = 43090, + [SMALL_STATE(1255)] = 43173, + [SMALL_STATE(1256)] = 43256, + [SMALL_STATE(1257)] = 43339, + [SMALL_STATE(1258)] = 43422, + [SMALL_STATE(1259)] = 43505, + [SMALL_STATE(1260)] = 43570, + [SMALL_STATE(1261)] = 43633, + [SMALL_STATE(1262)] = 43690, + [SMALL_STATE(1263)] = 43773, + [SMALL_STATE(1264)] = 43856, + [SMALL_STATE(1265)] = 43939, + [SMALL_STATE(1266)] = 44020, + [SMALL_STATE(1267)] = 44103, + [SMALL_STATE(1268)] = 44186, + [SMALL_STATE(1269)] = 44269, + [SMALL_STATE(1270)] = 44352, + [SMALL_STATE(1271)] = 44435, + [SMALL_STATE(1272)] = 44518, + [SMALL_STATE(1273)] = 44599, + [SMALL_STATE(1274)] = 44682, + [SMALL_STATE(1275)] = 44765, + [SMALL_STATE(1276)] = 44840, + [SMALL_STATE(1277)] = 44923, + [SMALL_STATE(1278)] = 45004, + [SMALL_STATE(1279)] = 45085, + [SMALL_STATE(1280)] = 45168, + [SMALL_STATE(1281)] = 45249, + [SMALL_STATE(1282)] = 45330, + [SMALL_STATE(1283)] = 45411, + [SMALL_STATE(1284)] = 45494, + [SMALL_STATE(1285)] = 45574, + [SMALL_STATE(1286)] = 45654, + [SMALL_STATE(1287)] = 45734, + [SMALL_STATE(1288)] = 45814, + [SMALL_STATE(1289)] = 45894, + [SMALL_STATE(1290)] = 45974, + [SMALL_STATE(1291)] = 46042, + [SMALL_STATE(1292)] = 46122, + [SMALL_STATE(1293)] = 46202, + [SMALL_STATE(1294)] = 46282, + [SMALL_STATE(1295)] = 46362, + [SMALL_STATE(1296)] = 46442, + [SMALL_STATE(1297)] = 46522, + [SMALL_STATE(1298)] = 46602, + [SMALL_STATE(1299)] = 46682, + [SMALL_STATE(1300)] = 46762, + [SMALL_STATE(1301)] = 46842, + [SMALL_STATE(1302)] = 46922, + [SMALL_STATE(1303)] = 47002, + [SMALL_STATE(1304)] = 47082, + [SMALL_STATE(1305)] = 47162, + [SMALL_STATE(1306)] = 47242, + [SMALL_STATE(1307)] = 47322, + [SMALL_STATE(1308)] = 47402, + [SMALL_STATE(1309)] = 47482, + [SMALL_STATE(1310)] = 47562, + [SMALL_STATE(1311)] = 47642, + [SMALL_STATE(1312)] = 47722, + [SMALL_STATE(1313)] = 47802, + [SMALL_STATE(1314)] = 47882, + [SMALL_STATE(1315)] = 47962, + [SMALL_STATE(1316)] = 48042, + [SMALL_STATE(1317)] = 48110, + [SMALL_STATE(1318)] = 48175, + [SMALL_STATE(1319)] = 48240, + [SMALL_STATE(1320)] = 48305, + [SMALL_STATE(1321)] = 48370, + [SMALL_STATE(1322)] = 48435, + [SMALL_STATE(1323)] = 48475, + [SMALL_STATE(1324)] = 48515, + [SMALL_STATE(1325)] = 48555, + [SMALL_STATE(1326)] = 48610, + [SMALL_STATE(1327)] = 48665, + [SMALL_STATE(1328)] = 48720, + [SMALL_STATE(1329)] = 48775, + [SMALL_STATE(1330)] = 48830, + [SMALL_STATE(1331)] = 48885, + [SMALL_STATE(1332)] = 48940, + [SMALL_STATE(1333)] = 48992, + [SMALL_STATE(1334)] = 49044, + [SMALL_STATE(1335)] = 49074, + [SMALL_STATE(1336)] = 49104, + [SMALL_STATE(1337)] = 49144, + [SMALL_STATE(1338)] = 49186, + [SMALL_STATE(1339)] = 49215, + [SMALL_STATE(1340)] = 49244, + [SMALL_STATE(1341)] = 49281, + [SMALL_STATE(1342)] = 49318, + [SMALL_STATE(1343)] = 49347, + [SMALL_STATE(1344)] = 49376, + [SMALL_STATE(1345)] = 49405, + [SMALL_STATE(1346)] = 49434, + [SMALL_STATE(1347)] = 49463, + [SMALL_STATE(1348)] = 49492, + [SMALL_STATE(1349)] = 49524, + [SMALL_STATE(1350)] = 49556, + [SMALL_STATE(1351)] = 49610, + [SMALL_STATE(1352)] = 49664, + [SMALL_STATE(1353)] = 49696, + [SMALL_STATE(1354)] = 49719, + [SMALL_STATE(1355)] = 49744, + [SMALL_STATE(1356)] = 49766, + [SMALL_STATE(1357)] = 49788, + [SMALL_STATE(1358)] = 49812, + [SMALL_STATE(1359)] = 49836, + [SMALL_STATE(1360)] = 49860, + [SMALL_STATE(1361)] = 49884, + [SMALL_STATE(1362)] = 49908, + [SMALL_STATE(1363)] = 49932, + [SMALL_STATE(1364)] = 49976, + [SMALL_STATE(1365)] = 50000, + [SMALL_STATE(1366)] = 50024, + [SMALL_STATE(1367)] = 50048, + [SMALL_STATE(1368)] = 50094, + [SMALL_STATE(1369)] = 50116, + [SMALL_STATE(1370)] = 50146, + [SMALL_STATE(1371)] = 50168, + [SMALL_STATE(1372)] = 50212, + [SMALL_STATE(1373)] = 50236, + [SMALL_STATE(1374)] = 50263, + [SMALL_STATE(1375)] = 50284, + [SMALL_STATE(1376)] = 50309, + [SMALL_STATE(1377)] = 50354, + [SMALL_STATE(1378)] = 50375, + [SMALL_STATE(1379)] = 50398, + [SMALL_STATE(1380)] = 50423, + [SMALL_STATE(1381)] = 50448, + [SMALL_STATE(1382)] = 50473, + [SMALL_STATE(1383)] = 50496, + [SMALL_STATE(1384)] = 50519, + [SMALL_STATE(1385)] = 50542, + [SMALL_STATE(1386)] = 50563, + [SMALL_STATE(1387)] = 50586, + [SMALL_STATE(1388)] = 50609, + [SMALL_STATE(1389)] = 50630, + [SMALL_STATE(1390)] = 50655, + [SMALL_STATE(1391)] = 50678, + [SMALL_STATE(1392)] = 50699, + [SMALL_STATE(1393)] = 50722, + [SMALL_STATE(1394)] = 50747, + [SMALL_STATE(1395)] = 50767, + [SMALL_STATE(1396)] = 50787, + [SMALL_STATE(1397)] = 50807, + [SMALL_STATE(1398)] = 50827, + [SMALL_STATE(1399)] = 50847, + [SMALL_STATE(1400)] = 50867, + [SMALL_STATE(1401)] = 50887, + [SMALL_STATE(1402)] = 50907, + [SMALL_STATE(1403)] = 50927, + [SMALL_STATE(1404)] = 50949, + [SMALL_STATE(1405)] = 50969, + [SMALL_STATE(1406)] = 50989, + [SMALL_STATE(1407)] = 51009, + [SMALL_STATE(1408)] = 51029, + [SMALL_STATE(1409)] = 51049, + [SMALL_STATE(1410)] = 51069, + [SMALL_STATE(1411)] = 51089, + [SMALL_STATE(1412)] = 51111, + [SMALL_STATE(1413)] = 51131, + [SMALL_STATE(1414)] = 51151, + [SMALL_STATE(1415)] = 51171, + [SMALL_STATE(1416)] = 51191, + [SMALL_STATE(1417)] = 51211, + [SMALL_STATE(1418)] = 51231, + [SMALL_STATE(1419)] = 51251, + [SMALL_STATE(1420)] = 51271, + [SMALL_STATE(1421)] = 51291, + [SMALL_STATE(1422)] = 51313, + [SMALL_STATE(1423)] = 51333, + [SMALL_STATE(1424)] = 51357, + [SMALL_STATE(1425)] = 51377, + [SMALL_STATE(1426)] = 51402, + [SMALL_STATE(1427)] = 51423, + [SMALL_STATE(1428)] = 51448, + [SMALL_STATE(1429)] = 51483, + [SMALL_STATE(1430)] = 51508, + [SMALL_STATE(1431)] = 51533, + [SMALL_STATE(1432)] = 51556, + [SMALL_STATE(1433)] = 51579, + [SMALL_STATE(1434)] = 51602, + [SMALL_STATE(1435)] = 51625, + [SMALL_STATE(1436)] = 51650, + [SMALL_STATE(1437)] = 51671, + [SMALL_STATE(1438)] = 51692, + [SMALL_STATE(1439)] = 51717, + [SMALL_STATE(1440)] = 51742, + [SMALL_STATE(1441)] = 51765, + [SMALL_STATE(1442)] = 51790, + [SMALL_STATE(1443)] = 51813, + [SMALL_STATE(1444)] = 51836, + [SMALL_STATE(1445)] = 51859, + [SMALL_STATE(1446)] = 51882, + [SMALL_STATE(1447)] = 51905, + [SMALL_STATE(1448)] = 51928, + [SMALL_STATE(1449)] = 51951, + [SMALL_STATE(1450)] = 51983, + [SMALL_STATE(1451)] = 52003, + [SMALL_STATE(1452)] = 52023, + [SMALL_STATE(1453)] = 52055, + [SMALL_STATE(1454)] = 52075, + [SMALL_STATE(1455)] = 52107, + [SMALL_STATE(1456)] = 52139, + [SMALL_STATE(1457)] = 52159, + [SMALL_STATE(1458)] = 52179, + [SMALL_STATE(1459)] = 52199, + [SMALL_STATE(1460)] = 52219, + [SMALL_STATE(1461)] = 52239, + [SMALL_STATE(1462)] = 52271, + [SMALL_STATE(1463)] = 52291, + [SMALL_STATE(1464)] = 52311, + [SMALL_STATE(1465)] = 52331, + [SMALL_STATE(1466)] = 52363, + [SMALL_STATE(1467)] = 52383, + [SMALL_STATE(1468)] = 52409, + [SMALL_STATE(1469)] = 52429, + [SMALL_STATE(1470)] = 52449, + [SMALL_STATE(1471)] = 52469, + [SMALL_STATE(1472)] = 52489, + [SMALL_STATE(1473)] = 52513, + [SMALL_STATE(1474)] = 52533, + [SMALL_STATE(1475)] = 52553, + [SMALL_STATE(1476)] = 52579, + [SMALL_STATE(1477)] = 52599, + [SMALL_STATE(1478)] = 52619, + [SMALL_STATE(1479)] = 52639, + [SMALL_STATE(1480)] = 52663, + [SMALL_STATE(1481)] = 52683, + [SMALL_STATE(1482)] = 52703, + [SMALL_STATE(1483)] = 52723, + [SMALL_STATE(1484)] = 52747, + [SMALL_STATE(1485)] = 52767, + [SMALL_STATE(1486)] = 52791, + [SMALL_STATE(1487)] = 52823, + [SMALL_STATE(1488)] = 52843, + [SMALL_STATE(1489)] = 52863, + [SMALL_STATE(1490)] = 52883, + [SMALL_STATE(1491)] = 52903, + [SMALL_STATE(1492)] = 52923, + [SMALL_STATE(1493)] = 52943, + [SMALL_STATE(1494)] = 52975, + [SMALL_STATE(1495)] = 53008, + [SMALL_STATE(1496)] = 53031, + [SMALL_STATE(1497)] = 53056, + [SMALL_STATE(1498)] = 53079, + [SMALL_STATE(1499)] = 53112, + [SMALL_STATE(1500)] = 53143, + [SMALL_STATE(1501)] = 53170, + [SMALL_STATE(1502)] = 53203, + [SMALL_STATE(1503)] = 53226, + [SMALL_STATE(1504)] = 53251, + [SMALL_STATE(1505)] = 53276, + [SMALL_STATE(1506)] = 53305, + [SMALL_STATE(1507)] = 53338, + [SMALL_STATE(1508)] = 53368, + [SMALL_STATE(1509)] = 53398, + [SMALL_STATE(1510)] = 53428, + [SMALL_STATE(1511)] = 53458, + [SMALL_STATE(1512)] = 53490, + [SMALL_STATE(1513)] = 53520, + [SMALL_STATE(1514)] = 53542, + [SMALL_STATE(1515)] = 53572, + [SMALL_STATE(1516)] = 53598, + [SMALL_STATE(1517)] = 53628, + [SMALL_STATE(1518)] = 53654, + [SMALL_STATE(1519)] = 53680, + [SMALL_STATE(1520)] = 53706, + [SMALL_STATE(1521)] = 53736, + [SMALL_STATE(1522)] = 53768, + [SMALL_STATE(1523)] = 53798, + [SMALL_STATE(1524)] = 53828, + [SMALL_STATE(1525)] = 53854, + [SMALL_STATE(1526)] = 53884, + [SMALL_STATE(1527)] = 53910, + [SMALL_STATE(1528)] = 53940, + [SMALL_STATE(1529)] = 53962, + [SMALL_STATE(1530)] = 53988, + [SMALL_STATE(1531)] = 54018, + [SMALL_STATE(1532)] = 54048, + [SMALL_STATE(1533)] = 54078, + [SMALL_STATE(1534)] = 54100, + [SMALL_STATE(1535)] = 54130, + [SMALL_STATE(1536)] = 54160, + [SMALL_STATE(1537)] = 54192, + [SMALL_STATE(1538)] = 54222, + [SMALL_STATE(1539)] = 54248, + [SMALL_STATE(1540)] = 54274, + [SMALL_STATE(1541)] = 54296, + [SMALL_STATE(1542)] = 54326, + [SMALL_STATE(1543)] = 54356, + [SMALL_STATE(1544)] = 54382, + [SMALL_STATE(1545)] = 54404, + [SMALL_STATE(1546)] = 54436, + [SMALL_STATE(1547)] = 54462, + [SMALL_STATE(1548)] = 54484, + [SMALL_STATE(1549)] = 54514, + [SMALL_STATE(1550)] = 54537, + [SMALL_STATE(1551)] = 54564, + [SMALL_STATE(1552)] = 54583, + [SMALL_STATE(1553)] = 54606, + [SMALL_STATE(1554)] = 54625, + [SMALL_STATE(1555)] = 54652, + [SMALL_STATE(1556)] = 54671, + [SMALL_STATE(1557)] = 54698, + [SMALL_STATE(1558)] = 54725, + [SMALL_STATE(1559)] = 54752, + [SMALL_STATE(1560)] = 54775, + [SMALL_STATE(1561)] = 54794, + [SMALL_STATE(1562)] = 54823, + [SMALL_STATE(1563)] = 54850, + [SMALL_STATE(1564)] = 54869, + [SMALL_STATE(1565)] = 54888, + [SMALL_STATE(1566)] = 54917, + [SMALL_STATE(1567)] = 54944, + [SMALL_STATE(1568)] = 54973, + [SMALL_STATE(1569)] = 54992, + [SMALL_STATE(1570)] = 55019, + [SMALL_STATE(1571)] = 55046, + [SMALL_STATE(1572)] = 55069, + [SMALL_STATE(1573)] = 55098, + [SMALL_STATE(1574)] = 55127, + [SMALL_STATE(1575)] = 55142, + [SMALL_STATE(1576)] = 55163, + [SMALL_STATE(1577)] = 55184, + [SMALL_STATE(1578)] = 55211, + [SMALL_STATE(1579)] = 55234, + [SMALL_STATE(1580)] = 55259, + [SMALL_STATE(1581)] = 55286, + [SMALL_STATE(1582)] = 55305, + [SMALL_STATE(1583)] = 55324, + [SMALL_STATE(1584)] = 55343, + [SMALL_STATE(1585)] = 55372, + [SMALL_STATE(1586)] = 55399, + [SMALL_STATE(1587)] = 55426, + [SMALL_STATE(1588)] = 55453, + [SMALL_STATE(1589)] = 55480, + [SMALL_STATE(1590)] = 55499, + [SMALL_STATE(1591)] = 55523, + [SMALL_STATE(1592)] = 55549, + [SMALL_STATE(1593)] = 55575, + [SMALL_STATE(1594)] = 55601, + [SMALL_STATE(1595)] = 55627, + [SMALL_STATE(1596)] = 55653, + [SMALL_STATE(1597)] = 55675, + [SMALL_STATE(1598)] = 55697, + [SMALL_STATE(1599)] = 55723, + [SMALL_STATE(1600)] = 55749, + [SMALL_STATE(1601)] = 55775, + [SMALL_STATE(1602)] = 55789, + [SMALL_STATE(1603)] = 55805, + [SMALL_STATE(1604)] = 55829, + [SMALL_STATE(1605)] = 55855, + [SMALL_STATE(1606)] = 55881, + [SMALL_STATE(1607)] = 55907, + [SMALL_STATE(1608)] = 55933, + [SMALL_STATE(1609)] = 55959, + [SMALL_STATE(1610)] = 55975, + [SMALL_STATE(1611)] = 56001, + [SMALL_STATE(1612)] = 56027, + [SMALL_STATE(1613)] = 56051, + [SMALL_STATE(1614)] = 56067, + [SMALL_STATE(1615)] = 56093, + [SMALL_STATE(1616)] = 56115, + [SMALL_STATE(1617)] = 56141, + [SMALL_STATE(1618)] = 56167, + [SMALL_STATE(1619)] = 56193, + [SMALL_STATE(1620)] = 56215, + [SMALL_STATE(1621)] = 56239, + [SMALL_STATE(1622)] = 56261, + [SMALL_STATE(1623)] = 56287, + [SMALL_STATE(1624)] = 56301, + [SMALL_STATE(1625)] = 56315, + [SMALL_STATE(1626)] = 56331, + [SMALL_STATE(1627)] = 56345, + [SMALL_STATE(1628)] = 56359, + [SMALL_STATE(1629)] = 56375, + [SMALL_STATE(1630)] = 56389, + [SMALL_STATE(1631)] = 56405, + [SMALL_STATE(1632)] = 56429, + [SMALL_STATE(1633)] = 56445, + [SMALL_STATE(1634)] = 56461, + [SMALL_STATE(1635)] = 56483, + [SMALL_STATE(1636)] = 56497, + [SMALL_STATE(1637)] = 56516, + [SMALL_STATE(1638)] = 56539, + [SMALL_STATE(1639)] = 56562, + [SMALL_STATE(1640)] = 56579, + [SMALL_STATE(1641)] = 56602, + [SMALL_STATE(1642)] = 56619, + [SMALL_STATE(1643)] = 56642, + [SMALL_STATE(1644)] = 56665, + [SMALL_STATE(1645)] = 56688, + [SMALL_STATE(1646)] = 56711, + [SMALL_STATE(1647)] = 56734, + [SMALL_STATE(1648)] = 56757, + [SMALL_STATE(1649)] = 56780, + [SMALL_STATE(1650)] = 56803, + [SMALL_STATE(1651)] = 56820, + [SMALL_STATE(1652)] = 56843, + [SMALL_STATE(1653)] = 56866, + [SMALL_STATE(1654)] = 56883, + [SMALL_STATE(1655)] = 56906, + [SMALL_STATE(1656)] = 56929, + [SMALL_STATE(1657)] = 56952, + [SMALL_STATE(1658)] = 56975, + [SMALL_STATE(1659)] = 56998, + [SMALL_STATE(1660)] = 57021, + [SMALL_STATE(1661)] = 57044, + [SMALL_STATE(1662)] = 57067, + [SMALL_STATE(1663)] = 57090, + [SMALL_STATE(1664)] = 57113, + [SMALL_STATE(1665)] = 57136, + [SMALL_STATE(1666)] = 57151, + [SMALL_STATE(1667)] = 57170, + [SMALL_STATE(1668)] = 57193, + [SMALL_STATE(1669)] = 57216, + [SMALL_STATE(1670)] = 57239, + [SMALL_STATE(1671)] = 57256, + [SMALL_STATE(1672)] = 57279, + [SMALL_STATE(1673)] = 57300, + [SMALL_STATE(1674)] = 57323, + [SMALL_STATE(1675)] = 57346, + [SMALL_STATE(1676)] = 57369, + [SMALL_STATE(1677)] = 57392, + [SMALL_STATE(1678)] = 57415, + [SMALL_STATE(1679)] = 57438, + [SMALL_STATE(1680)] = 57461, + [SMALL_STATE(1681)] = 57484, + [SMALL_STATE(1682)] = 57507, + [SMALL_STATE(1683)] = 57530, + [SMALL_STATE(1684)] = 57553, + [SMALL_STATE(1685)] = 57570, + [SMALL_STATE(1686)] = 57593, + [SMALL_STATE(1687)] = 57612, + [SMALL_STATE(1688)] = 57635, + [SMALL_STATE(1689)] = 57652, + [SMALL_STATE(1690)] = 57669, + [SMALL_STATE(1691)] = 57686, + [SMALL_STATE(1692)] = 57709, + [SMALL_STATE(1693)] = 57732, + [SMALL_STATE(1694)] = 57755, + [SMALL_STATE(1695)] = 57772, + [SMALL_STATE(1696)] = 57795, + [SMALL_STATE(1697)] = 57818, + [SMALL_STATE(1698)] = 57841, + [SMALL_STATE(1699)] = 57864, + [SMALL_STATE(1700)] = 57885, + [SMALL_STATE(1701)] = 57908, + [SMALL_STATE(1702)] = 57931, + [SMALL_STATE(1703)] = 57954, + [SMALL_STATE(1704)] = 57977, + [SMALL_STATE(1705)] = 58000, + [SMALL_STATE(1706)] = 58017, + [SMALL_STATE(1707)] = 58040, + [SMALL_STATE(1708)] = 58063, + [SMALL_STATE(1709)] = 58086, + [SMALL_STATE(1710)] = 58103, + [SMALL_STATE(1711)] = 58118, + [SMALL_STATE(1712)] = 58141, + [SMALL_STATE(1713)] = 58164, + [SMALL_STATE(1714)] = 58187, + [SMALL_STATE(1715)] = 58204, + [SMALL_STATE(1716)] = 58227, + [SMALL_STATE(1717)] = 58250, + [SMALL_STATE(1718)] = 58273, + [SMALL_STATE(1719)] = 58296, + [SMALL_STATE(1720)] = 58313, + [SMALL_STATE(1721)] = 58336, + [SMALL_STATE(1722)] = 58359, + [SMALL_STATE(1723)] = 58382, + [SMALL_STATE(1724)] = 58405, + [SMALL_STATE(1725)] = 58422, + [SMALL_STATE(1726)] = 58445, + [SMALL_STATE(1727)] = 58468, + [SMALL_STATE(1728)] = 58491, + [SMALL_STATE(1729)] = 58507, + [SMALL_STATE(1730)] = 58525, + [SMALL_STATE(1731)] = 58543, + [SMALL_STATE(1732)] = 58555, + [SMALL_STATE(1733)] = 58567, + [SMALL_STATE(1734)] = 58579, + [SMALL_STATE(1735)] = 58591, + [SMALL_STATE(1736)] = 58603, + [SMALL_STATE(1737)] = 58619, + [SMALL_STATE(1738)] = 58635, + [SMALL_STATE(1739)] = 58647, + [SMALL_STATE(1740)] = 58659, + [SMALL_STATE(1741)] = 58675, + [SMALL_STATE(1742)] = 58693, + [SMALL_STATE(1743)] = 58713, + [SMALL_STATE(1744)] = 58731, + [SMALL_STATE(1745)] = 58743, + [SMALL_STATE(1746)] = 58755, + [SMALL_STATE(1747)] = 58767, + [SMALL_STATE(1748)] = 58787, + [SMALL_STATE(1749)] = 58799, + [SMALL_STATE(1750)] = 58811, + [SMALL_STATE(1751)] = 58829, + [SMALL_STATE(1752)] = 58841, + [SMALL_STATE(1753)] = 58859, + [SMALL_STATE(1754)] = 58879, + [SMALL_STATE(1755)] = 58893, + [SMALL_STATE(1756)] = 58909, + [SMALL_STATE(1757)] = 58925, + [SMALL_STATE(1758)] = 58941, + [SMALL_STATE(1759)] = 58957, + [SMALL_STATE(1760)] = 58977, + [SMALL_STATE(1761)] = 58989, + [SMALL_STATE(1762)] = 59001, + [SMALL_STATE(1763)] = 59019, + [SMALL_STATE(1764)] = 59035, + [SMALL_STATE(1765)] = 59049, + [SMALL_STATE(1766)] = 59061, + [SMALL_STATE(1767)] = 59073, + [SMALL_STATE(1768)] = 59089, + [SMALL_STATE(1769)] = 59107, + [SMALL_STATE(1770)] = 59119, + [SMALL_STATE(1771)] = 59135, + [SMALL_STATE(1772)] = 59155, + [SMALL_STATE(1773)] = 59175, + [SMALL_STATE(1774)] = 59191, + [SMALL_STATE(1775)] = 59207, + [SMALL_STATE(1776)] = 59219, + [SMALL_STATE(1777)] = 59231, + [SMALL_STATE(1778)] = 59243, + [SMALL_STATE(1779)] = 59260, + [SMALL_STATE(1780)] = 59273, + [SMALL_STATE(1781)] = 59290, + [SMALL_STATE(1782)] = 59305, + [SMALL_STATE(1783)] = 59318, + [SMALL_STATE(1784)] = 59333, + [SMALL_STATE(1785)] = 59350, + [SMALL_STATE(1786)] = 59367, + [SMALL_STATE(1787)] = 59382, + [SMALL_STATE(1788)] = 59399, + [SMALL_STATE(1789)] = 59416, + [SMALL_STATE(1790)] = 59431, + [SMALL_STATE(1791)] = 59448, + [SMALL_STATE(1792)] = 59465, + [SMALL_STATE(1793)] = 59482, + [SMALL_STATE(1794)] = 59499, + [SMALL_STATE(1795)] = 59516, + [SMALL_STATE(1796)] = 59533, + [SMALL_STATE(1797)] = 59550, + [SMALL_STATE(1798)] = 59567, + [SMALL_STATE(1799)] = 59584, + [SMALL_STATE(1800)] = 59601, + [SMALL_STATE(1801)] = 59618, + [SMALL_STATE(1802)] = 59635, + [SMALL_STATE(1803)] = 59650, + [SMALL_STATE(1804)] = 59665, + [SMALL_STATE(1805)] = 59682, + [SMALL_STATE(1806)] = 59697, + [SMALL_STATE(1807)] = 59714, + [SMALL_STATE(1808)] = 59731, + [SMALL_STATE(1809)] = 59748, + [SMALL_STATE(1810)] = 59765, + [SMALL_STATE(1811)] = 59782, + [SMALL_STATE(1812)] = 59799, + [SMALL_STATE(1813)] = 59814, + [SMALL_STATE(1814)] = 59831, + [SMALL_STATE(1815)] = 59848, + [SMALL_STATE(1816)] = 59865, + [SMALL_STATE(1817)] = 59882, + [SMALL_STATE(1818)] = 59899, + [SMALL_STATE(1819)] = 59914, + [SMALL_STATE(1820)] = 59929, + [SMALL_STATE(1821)] = 59946, + [SMALL_STATE(1822)] = 59963, + [SMALL_STATE(1823)] = 59980, + [SMALL_STATE(1824)] = 59997, + [SMALL_STATE(1825)] = 60014, + [SMALL_STATE(1826)] = 60027, + [SMALL_STATE(1827)] = 60044, + [SMALL_STATE(1828)] = 60057, + [SMALL_STATE(1829)] = 60074, + [SMALL_STATE(1830)] = 60091, + [SMALL_STATE(1831)] = 60106, + [SMALL_STATE(1832)] = 60123, + [SMALL_STATE(1833)] = 60138, + [SMALL_STATE(1834)] = 60155, + [SMALL_STATE(1835)] = 60172, + [SMALL_STATE(1836)] = 60189, + [SMALL_STATE(1837)] = 60204, + [SMALL_STATE(1838)] = 60219, + [SMALL_STATE(1839)] = 60234, + [SMALL_STATE(1840)] = 60251, + [SMALL_STATE(1841)] = 60268, + [SMALL_STATE(1842)] = 60285, + [SMALL_STATE(1843)] = 60300, + [SMALL_STATE(1844)] = 60317, + [SMALL_STATE(1845)] = 60332, + [SMALL_STATE(1846)] = 60349, + [SMALL_STATE(1847)] = 60364, + [SMALL_STATE(1848)] = 60379, + [SMALL_STATE(1849)] = 60392, + [SMALL_STATE(1850)] = 60407, + [SMALL_STATE(1851)] = 60422, + [SMALL_STATE(1852)] = 60439, + [SMALL_STATE(1853)] = 60456, + [SMALL_STATE(1854)] = 60473, + [SMALL_STATE(1855)] = 60486, + [SMALL_STATE(1856)] = 60503, + [SMALL_STATE(1857)] = 60516, + [SMALL_STATE(1858)] = 60531, + [SMALL_STATE(1859)] = 60548, + [SMALL_STATE(1860)] = 60563, + [SMALL_STATE(1861)] = 60578, + [SMALL_STATE(1862)] = 60591, + [SMALL_STATE(1863)] = 60608, + [SMALL_STATE(1864)] = 60625, + [SMALL_STATE(1865)] = 60642, + [SMALL_STATE(1866)] = 60657, + [SMALL_STATE(1867)] = 60674, + [SMALL_STATE(1868)] = 60691, + [SMALL_STATE(1869)] = 60708, + [SMALL_STATE(1870)] = 60725, + [SMALL_STATE(1871)] = 60742, + [SMALL_STATE(1872)] = 60757, + [SMALL_STATE(1873)] = 60774, + [SMALL_STATE(1874)] = 60791, + [SMALL_STATE(1875)] = 60808, + [SMALL_STATE(1876)] = 60821, + [SMALL_STATE(1877)] = 60838, + [SMALL_STATE(1878)] = 60855, + [SMALL_STATE(1879)] = 60870, + [SMALL_STATE(1880)] = 60883, + [SMALL_STATE(1881)] = 60898, + [SMALL_STATE(1882)] = 60912, + [SMALL_STATE(1883)] = 60926, + [SMALL_STATE(1884)] = 60938, + [SMALL_STATE(1885)] = 60952, + [SMALL_STATE(1886)] = 60966, + [SMALL_STATE(1887)] = 60980, + [SMALL_STATE(1888)] = 60994, + [SMALL_STATE(1889)] = 61008, + [SMALL_STATE(1890)] = 61022, + [SMALL_STATE(1891)] = 61036, + [SMALL_STATE(1892)] = 61050, + [SMALL_STATE(1893)] = 61062, + [SMALL_STATE(1894)] = 61076, + [SMALL_STATE(1895)] = 61090, + [SMALL_STATE(1896)] = 61104, + [SMALL_STATE(1897)] = 61118, + [SMALL_STATE(1898)] = 61132, + [SMALL_STATE(1899)] = 61146, + [SMALL_STATE(1900)] = 61160, + [SMALL_STATE(1901)] = 61172, + [SMALL_STATE(1902)] = 61186, + [SMALL_STATE(1903)] = 61200, + [SMALL_STATE(1904)] = 61210, + [SMALL_STATE(1905)] = 61224, + [SMALL_STATE(1906)] = 61238, + [SMALL_STATE(1907)] = 61252, + [SMALL_STATE(1908)] = 61262, + [SMALL_STATE(1909)] = 61276, + [SMALL_STATE(1910)] = 61286, + [SMALL_STATE(1911)] = 61300, + [SMALL_STATE(1912)] = 61314, + [SMALL_STATE(1913)] = 61328, + [SMALL_STATE(1914)] = 61342, + [SMALL_STATE(1915)] = 61356, + [SMALL_STATE(1916)] = 61366, + [SMALL_STATE(1917)] = 61376, + [SMALL_STATE(1918)] = 61390, + [SMALL_STATE(1919)] = 61404, + [SMALL_STATE(1920)] = 61416, + [SMALL_STATE(1921)] = 61430, + [SMALL_STATE(1922)] = 61444, + [SMALL_STATE(1923)] = 61456, + [SMALL_STATE(1924)] = 61470, + [SMALL_STATE(1925)] = 61484, + [SMALL_STATE(1926)] = 61498, + [SMALL_STATE(1927)] = 61512, + [SMALL_STATE(1928)] = 61526, + [SMALL_STATE(1929)] = 61538, + [SMALL_STATE(1930)] = 61552, + [SMALL_STATE(1931)] = 61566, + [SMALL_STATE(1932)] = 61580, + [SMALL_STATE(1933)] = 61594, + [SMALL_STATE(1934)] = 61606, + [SMALL_STATE(1935)] = 61620, + [SMALL_STATE(1936)] = 61634, + [SMALL_STATE(1937)] = 61648, + [SMALL_STATE(1938)] = 61662, + [SMALL_STATE(1939)] = 61676, + [SMALL_STATE(1940)] = 61688, + [SMALL_STATE(1941)] = 61702, + [SMALL_STATE(1942)] = 61716, + [SMALL_STATE(1943)] = 61730, + [SMALL_STATE(1944)] = 61744, + [SMALL_STATE(1945)] = 61758, + [SMALL_STATE(1946)] = 61768, + [SMALL_STATE(1947)] = 61782, + [SMALL_STATE(1948)] = 61796, + [SMALL_STATE(1949)] = 61810, + [SMALL_STATE(1950)] = 61824, + [SMALL_STATE(1951)] = 61838, + [SMALL_STATE(1952)] = 61850, + [SMALL_STATE(1953)] = 61864, + [SMALL_STATE(1954)] = 61876, + [SMALL_STATE(1955)] = 61890, + [SMALL_STATE(1956)] = 61904, + [SMALL_STATE(1957)] = 61918, + [SMALL_STATE(1958)] = 61932, + [SMALL_STATE(1959)] = 61942, + [SMALL_STATE(1960)] = 61956, + [SMALL_STATE(1961)] = 61970, + [SMALL_STATE(1962)] = 61982, + [SMALL_STATE(1963)] = 61994, + [SMALL_STATE(1964)] = 62008, + [SMALL_STATE(1965)] = 62022, + [SMALL_STATE(1966)] = 62036, + [SMALL_STATE(1967)] = 62048, + [SMALL_STATE(1968)] = 62062, + [SMALL_STATE(1969)] = 62074, + [SMALL_STATE(1970)] = 62088, + [SMALL_STATE(1971)] = 62102, + [SMALL_STATE(1972)] = 62116, + [SMALL_STATE(1973)] = 62130, + [SMALL_STATE(1974)] = 62144, + [SMALL_STATE(1975)] = 62158, + [SMALL_STATE(1976)] = 62170, + [SMALL_STATE(1977)] = 62184, + [SMALL_STATE(1978)] = 62194, + [SMALL_STATE(1979)] = 62206, + [SMALL_STATE(1980)] = 62218, + [SMALL_STATE(1981)] = 62232, + [SMALL_STATE(1982)] = 62244, + [SMALL_STATE(1983)] = 62256, + [SMALL_STATE(1984)] = 62270, + [SMALL_STATE(1985)] = 62282, + [SMALL_STATE(1986)] = 62296, + [SMALL_STATE(1987)] = 62310, + [SMALL_STATE(1988)] = 62324, + [SMALL_STATE(1989)] = 62338, + [SMALL_STATE(1990)] = 62352, + [SMALL_STATE(1991)] = 62366, + [SMALL_STATE(1992)] = 62380, + [SMALL_STATE(1993)] = 62394, + [SMALL_STATE(1994)] = 62408, + [SMALL_STATE(1995)] = 62422, + [SMALL_STATE(1996)] = 62432, + [SMALL_STATE(1997)] = 62446, + [SMALL_STATE(1998)] = 62458, + [SMALL_STATE(1999)] = 62470, + [SMALL_STATE(2000)] = 62484, + [SMALL_STATE(2001)] = 62498, + [SMALL_STATE(2002)] = 62512, + [SMALL_STATE(2003)] = 62526, + [SMALL_STATE(2004)] = 62540, + [SMALL_STATE(2005)] = 62554, + [SMALL_STATE(2006)] = 62566, + [SMALL_STATE(2007)] = 62578, + [SMALL_STATE(2008)] = 62588, + [SMALL_STATE(2009)] = 62602, + [SMALL_STATE(2010)] = 62616, + [SMALL_STATE(2011)] = 62630, + [SMALL_STATE(2012)] = 62644, + [SMALL_STATE(2013)] = 62658, + [SMALL_STATE(2014)] = 62672, + [SMALL_STATE(2015)] = 62686, + [SMALL_STATE(2016)] = 62700, + [SMALL_STATE(2017)] = 62714, + [SMALL_STATE(2018)] = 62724, + [SMALL_STATE(2019)] = 62738, + [SMALL_STATE(2020)] = 62752, + [SMALL_STATE(2021)] = 62766, + [SMALL_STATE(2022)] = 62778, + [SMALL_STATE(2023)] = 62792, + [SMALL_STATE(2024)] = 62806, + [SMALL_STATE(2025)] = 62820, + [SMALL_STATE(2026)] = 62834, + [SMALL_STATE(2027)] = 62848, + [SMALL_STATE(2028)] = 62862, + [SMALL_STATE(2029)] = 62876, + [SMALL_STATE(2030)] = 62890, + [SMALL_STATE(2031)] = 62904, + [SMALL_STATE(2032)] = 62918, + [SMALL_STATE(2033)] = 62932, + [SMALL_STATE(2034)] = 62946, + [SMALL_STATE(2035)] = 62956, + [SMALL_STATE(2036)] = 62966, + [SMALL_STATE(2037)] = 62978, + [SMALL_STATE(2038)] = 62992, + [SMALL_STATE(2039)] = 63002, + [SMALL_STATE(2040)] = 63016, + [SMALL_STATE(2041)] = 63030, + [SMALL_STATE(2042)] = 63044, + [SMALL_STATE(2043)] = 63058, + [SMALL_STATE(2044)] = 63072, + [SMALL_STATE(2045)] = 63086, + [SMALL_STATE(2046)] = 63100, + [SMALL_STATE(2047)] = 63114, + [SMALL_STATE(2048)] = 63124, + [SMALL_STATE(2049)] = 63138, + [SMALL_STATE(2050)] = 63148, + [SMALL_STATE(2051)] = 63162, + [SMALL_STATE(2052)] = 63172, + [SMALL_STATE(2053)] = 63186, + [SMALL_STATE(2054)] = 63200, + [SMALL_STATE(2055)] = 63214, + [SMALL_STATE(2056)] = 63224, + [SMALL_STATE(2057)] = 63238, + [SMALL_STATE(2058)] = 63252, + [SMALL_STATE(2059)] = 63266, + [SMALL_STATE(2060)] = 63280, + [SMALL_STATE(2061)] = 63294, + [SMALL_STATE(2062)] = 63308, + [SMALL_STATE(2063)] = 63322, + [SMALL_STATE(2064)] = 63334, + [SMALL_STATE(2065)] = 63348, + [SMALL_STATE(2066)] = 63360, + [SMALL_STATE(2067)] = 63374, + [SMALL_STATE(2068)] = 63388, + [SMALL_STATE(2069)] = 63402, + [SMALL_STATE(2070)] = 63416, + [SMALL_STATE(2071)] = 63430, + [SMALL_STATE(2072)] = 63444, + [SMALL_STATE(2073)] = 63458, + [SMALL_STATE(2074)] = 63472, + [SMALL_STATE(2075)] = 63486, + [SMALL_STATE(2076)] = 63500, + [SMALL_STATE(2077)] = 63510, + [SMALL_STATE(2078)] = 63524, + [SMALL_STATE(2079)] = 63536, + [SMALL_STATE(2080)] = 63546, + [SMALL_STATE(2081)] = 63560, + [SMALL_STATE(2082)] = 63574, + [SMALL_STATE(2083)] = 63588, + [SMALL_STATE(2084)] = 63602, + [SMALL_STATE(2085)] = 63616, + [SMALL_STATE(2086)] = 63628, + [SMALL_STATE(2087)] = 63642, + [SMALL_STATE(2088)] = 63656, + [SMALL_STATE(2089)] = 63670, + [SMALL_STATE(2090)] = 63684, + [SMALL_STATE(2091)] = 63696, + [SMALL_STATE(2092)] = 63710, + [SMALL_STATE(2093)] = 63724, + [SMALL_STATE(2094)] = 63738, + [SMALL_STATE(2095)] = 63752, + [SMALL_STATE(2096)] = 63766, + [SMALL_STATE(2097)] = 63776, + [SMALL_STATE(2098)] = 63790, + [SMALL_STATE(2099)] = 63800, + [SMALL_STATE(2100)] = 63810, + [SMALL_STATE(2101)] = 63824, + [SMALL_STATE(2102)] = 63836, + [SMALL_STATE(2103)] = 63850, + [SMALL_STATE(2104)] = 63864, + [SMALL_STATE(2105)] = 63878, + [SMALL_STATE(2106)] = 63892, + [SMALL_STATE(2107)] = 63906, + [SMALL_STATE(2108)] = 63916, + [SMALL_STATE(2109)] = 63930, + [SMALL_STATE(2110)] = 63944, + [SMALL_STATE(2111)] = 63954, + [SMALL_STATE(2112)] = 63964, + [SMALL_STATE(2113)] = 63978, + [SMALL_STATE(2114)] = 63992, + [SMALL_STATE(2115)] = 64006, + [SMALL_STATE(2116)] = 64020, + [SMALL_STATE(2117)] = 64030, + [SMALL_STATE(2118)] = 64040, + [SMALL_STATE(2119)] = 64050, + [SMALL_STATE(2120)] = 64064, + [SMALL_STATE(2121)] = 64076, + [SMALL_STATE(2122)] = 64090, + [SMALL_STATE(2123)] = 64104, + [SMALL_STATE(2124)] = 64118, + [SMALL_STATE(2125)] = 64128, + [SMALL_STATE(2126)] = 64142, + [SMALL_STATE(2127)] = 64156, + [SMALL_STATE(2128)] = 64170, + [SMALL_STATE(2129)] = 64184, + [SMALL_STATE(2130)] = 64198, + [SMALL_STATE(2131)] = 64212, + [SMALL_STATE(2132)] = 64224, + [SMALL_STATE(2133)] = 64236, + [SMALL_STATE(2134)] = 64250, + [SMALL_STATE(2135)] = 64262, + [SMALL_STATE(2136)] = 64272, + [SMALL_STATE(2137)] = 64286, + [SMALL_STATE(2138)] = 64300, + [SMALL_STATE(2139)] = 64314, + [SMALL_STATE(2140)] = 64328, + [SMALL_STATE(2141)] = 64342, + [SMALL_STATE(2142)] = 64352, + [SMALL_STATE(2143)] = 64366, + [SMALL_STATE(2144)] = 64380, + [SMALL_STATE(2145)] = 64394, + [SMALL_STATE(2146)] = 64408, + [SMALL_STATE(2147)] = 64422, + [SMALL_STATE(2148)] = 64436, + [SMALL_STATE(2149)] = 64447, + [SMALL_STATE(2150)] = 64458, + [SMALL_STATE(2151)] = 64469, + [SMALL_STATE(2152)] = 64480, + [SMALL_STATE(2153)] = 64491, + [SMALL_STATE(2154)] = 64502, + [SMALL_STATE(2155)] = 64511, + [SMALL_STATE(2156)] = 64522, + [SMALL_STATE(2157)] = 64533, + [SMALL_STATE(2158)] = 64544, + [SMALL_STATE(2159)] = 64555, + [SMALL_STATE(2160)] = 64564, + [SMALL_STATE(2161)] = 64575, + [SMALL_STATE(2162)] = 64586, + [SMALL_STATE(2163)] = 64597, + [SMALL_STATE(2164)] = 64608, + [SMALL_STATE(2165)] = 64619, + [SMALL_STATE(2166)] = 64630, + [SMALL_STATE(2167)] = 64641, + [SMALL_STATE(2168)] = 64652, + [SMALL_STATE(2169)] = 64661, + [SMALL_STATE(2170)] = 64672, + [SMALL_STATE(2171)] = 64683, + [SMALL_STATE(2172)] = 64694, + [SMALL_STATE(2173)] = 64703, + [SMALL_STATE(2174)] = 64714, + [SMALL_STATE(2175)] = 64725, + [SMALL_STATE(2176)] = 64736, + [SMALL_STATE(2177)] = 64747, + [SMALL_STATE(2178)] = 64758, + [SMALL_STATE(2179)] = 64769, + [SMALL_STATE(2180)] = 64780, + [SMALL_STATE(2181)] = 64791, + [SMALL_STATE(2182)] = 64802, + [SMALL_STATE(2183)] = 64813, + [SMALL_STATE(2184)] = 64824, + [SMALL_STATE(2185)] = 64835, + [SMALL_STATE(2186)] = 64846, + [SMALL_STATE(2187)] = 64857, + [SMALL_STATE(2188)] = 64868, + [SMALL_STATE(2189)] = 64879, + [SMALL_STATE(2190)] = 64890, + [SMALL_STATE(2191)] = 64901, + [SMALL_STATE(2192)] = 64912, + [SMALL_STATE(2193)] = 64923, + [SMALL_STATE(2194)] = 64934, + [SMALL_STATE(2195)] = 64945, + [SMALL_STATE(2196)] = 64956, + [SMALL_STATE(2197)] = 64965, + [SMALL_STATE(2198)] = 64976, + [SMALL_STATE(2199)] = 64987, + [SMALL_STATE(2200)] = 64998, + [SMALL_STATE(2201)] = 65009, + [SMALL_STATE(2202)] = 65020, + [SMALL_STATE(2203)] = 65031, + [SMALL_STATE(2204)] = 65040, + [SMALL_STATE(2205)] = 65051, + [SMALL_STATE(2206)] = 65060, + [SMALL_STATE(2207)] = 65071, + [SMALL_STATE(2208)] = 65082, + [SMALL_STATE(2209)] = 65091, + [SMALL_STATE(2210)] = 65102, + [SMALL_STATE(2211)] = 65113, + [SMALL_STATE(2212)] = 65122, + [SMALL_STATE(2213)] = 65133, + [SMALL_STATE(2214)] = 65142, + [SMALL_STATE(2215)] = 65153, + [SMALL_STATE(2216)] = 65164, + [SMALL_STATE(2217)] = 65173, + [SMALL_STATE(2218)] = 65182, + [SMALL_STATE(2219)] = 65193, + [SMALL_STATE(2220)] = 65204, + [SMALL_STATE(2221)] = 65215, + [SMALL_STATE(2222)] = 65226, + [SMALL_STATE(2223)] = 65235, + [SMALL_STATE(2224)] = 65246, + [SMALL_STATE(2225)] = 65257, + [SMALL_STATE(2226)] = 65268, + [SMALL_STATE(2227)] = 65279, + [SMALL_STATE(2228)] = 65290, + [SMALL_STATE(2229)] = 65299, + [SMALL_STATE(2230)] = 65310, + [SMALL_STATE(2231)] = 65321, + [SMALL_STATE(2232)] = 65332, + [SMALL_STATE(2233)] = 65343, + [SMALL_STATE(2234)] = 65354, + [SMALL_STATE(2235)] = 65365, + [SMALL_STATE(2236)] = 65376, + [SMALL_STATE(2237)] = 65387, + [SMALL_STATE(2238)] = 65398, + [SMALL_STATE(2239)] = 65409, + [SMALL_STATE(2240)] = 65420, + [SMALL_STATE(2241)] = 65429, + [SMALL_STATE(2242)] = 65440, + [SMALL_STATE(2243)] = 65451, + [SMALL_STATE(2244)] = 65462, + [SMALL_STATE(2245)] = 65473, + [SMALL_STATE(2246)] = 65482, + [SMALL_STATE(2247)] = 65493, + [SMALL_STATE(2248)] = 65504, + [SMALL_STATE(2249)] = 65515, + [SMALL_STATE(2250)] = 65526, + [SMALL_STATE(2251)] = 65535, + [SMALL_STATE(2252)] = 65546, + [SMALL_STATE(2253)] = 65557, + [SMALL_STATE(2254)] = 65568, + [SMALL_STATE(2255)] = 65579, + [SMALL_STATE(2256)] = 65590, + [SMALL_STATE(2257)] = 65601, + [SMALL_STATE(2258)] = 65612, + [SMALL_STATE(2259)] = 65623, + [SMALL_STATE(2260)] = 65634, + [SMALL_STATE(2261)] = 65645, + [SMALL_STATE(2262)] = 65656, + [SMALL_STATE(2263)] = 65667, + [SMALL_STATE(2264)] = 65678, + [SMALL_STATE(2265)] = 65689, + [SMALL_STATE(2266)] = 65700, + [SMALL_STATE(2267)] = 65711, + [SMALL_STATE(2268)] = 65720, + [SMALL_STATE(2269)] = 65729, + [SMALL_STATE(2270)] = 65740, + [SMALL_STATE(2271)] = 65749, + [SMALL_STATE(2272)] = 65760, + [SMALL_STATE(2273)] = 65771, + [SMALL_STATE(2274)] = 65782, + [SMALL_STATE(2275)] = 65793, + [SMALL_STATE(2276)] = 65804, + [SMALL_STATE(2277)] = 65815, + [SMALL_STATE(2278)] = 65826, + [SMALL_STATE(2279)] = 65835, + [SMALL_STATE(2280)] = 65846, + [SMALL_STATE(2281)] = 65857, + [SMALL_STATE(2282)] = 65868, + [SMALL_STATE(2283)] = 65879, + [SMALL_STATE(2284)] = 65890, + [SMALL_STATE(2285)] = 65901, + [SMALL_STATE(2286)] = 65912, + [SMALL_STATE(2287)] = 65921, + [SMALL_STATE(2288)] = 65932, + [SMALL_STATE(2289)] = 65943, + [SMALL_STATE(2290)] = 65954, + [SMALL_STATE(2291)] = 65965, + [SMALL_STATE(2292)] = 65976, + [SMALL_STATE(2293)] = 65987, + [SMALL_STATE(2294)] = 65998, + [SMALL_STATE(2295)] = 66009, + [SMALL_STATE(2296)] = 66020, + [SMALL_STATE(2297)] = 66031, + [SMALL_STATE(2298)] = 66042, + [SMALL_STATE(2299)] = 66053, + [SMALL_STATE(2300)] = 66064, + [SMALL_STATE(2301)] = 66073, + [SMALL_STATE(2302)] = 66084, + [SMALL_STATE(2303)] = 66095, + [SMALL_STATE(2304)] = 66106, + [SMALL_STATE(2305)] = 66117, + [SMALL_STATE(2306)] = 66128, + [SMALL_STATE(2307)] = 66139, + [SMALL_STATE(2308)] = 66150, + [SMALL_STATE(2309)] = 66161, + [SMALL_STATE(2310)] = 66172, + [SMALL_STATE(2311)] = 66183, + [SMALL_STATE(2312)] = 66194, + [SMALL_STATE(2313)] = 66205, + [SMALL_STATE(2314)] = 66216, + [SMALL_STATE(2315)] = 66227, + [SMALL_STATE(2316)] = 66238, + [SMALL_STATE(2317)] = 66249, + [SMALL_STATE(2318)] = 66260, + [SMALL_STATE(2319)] = 66271, + [SMALL_STATE(2320)] = 66280, + [SMALL_STATE(2321)] = 66291, + [SMALL_STATE(2322)] = 66300, + [SMALL_STATE(2323)] = 66311, + [SMALL_STATE(2324)] = 66322, + [SMALL_STATE(2325)] = 66331, + [SMALL_STATE(2326)] = 66342, + [SMALL_STATE(2327)] = 66353, + [SMALL_STATE(2328)] = 66364, + [SMALL_STATE(2329)] = 66375, + [SMALL_STATE(2330)] = 66386, + [SMALL_STATE(2331)] = 66395, + [SMALL_STATE(2332)] = 66404, + [SMALL_STATE(2333)] = 66415, + [SMALL_STATE(2334)] = 66426, + [SMALL_STATE(2335)] = 66434, + [SMALL_STATE(2336)] = 66442, + [SMALL_STATE(2337)] = 66450, + [SMALL_STATE(2338)] = 66458, + [SMALL_STATE(2339)] = 66466, + [SMALL_STATE(2340)] = 66474, + [SMALL_STATE(2341)] = 66482, + [SMALL_STATE(2342)] = 66490, + [SMALL_STATE(2343)] = 66498, + [SMALL_STATE(2344)] = 66506, + [SMALL_STATE(2345)] = 66514, + [SMALL_STATE(2346)] = 66522, + [SMALL_STATE(2347)] = 66530, + [SMALL_STATE(2348)] = 66538, + [SMALL_STATE(2349)] = 66546, + [SMALL_STATE(2350)] = 66554, + [SMALL_STATE(2351)] = 66562, + [SMALL_STATE(2352)] = 66570, + [SMALL_STATE(2353)] = 66578, + [SMALL_STATE(2354)] = 66586, + [SMALL_STATE(2355)] = 66594, + [SMALL_STATE(2356)] = 66602, + [SMALL_STATE(2357)] = 66610, + [SMALL_STATE(2358)] = 66618, + [SMALL_STATE(2359)] = 66626, + [SMALL_STATE(2360)] = 66634, + [SMALL_STATE(2361)] = 66642, + [SMALL_STATE(2362)] = 66650, + [SMALL_STATE(2363)] = 66658, + [SMALL_STATE(2364)] = 66666, + [SMALL_STATE(2365)] = 66674, + [SMALL_STATE(2366)] = 66682, + [SMALL_STATE(2367)] = 66690, + [SMALL_STATE(2368)] = 66698, + [SMALL_STATE(2369)] = 66706, + [SMALL_STATE(2370)] = 66714, + [SMALL_STATE(2371)] = 66722, + [SMALL_STATE(2372)] = 66730, + [SMALL_STATE(2373)] = 66738, + [SMALL_STATE(2374)] = 66746, + [SMALL_STATE(2375)] = 66754, + [SMALL_STATE(2376)] = 66762, + [SMALL_STATE(2377)] = 66770, + [SMALL_STATE(2378)] = 66778, + [SMALL_STATE(2379)] = 66786, + [SMALL_STATE(2380)] = 66794, + [SMALL_STATE(2381)] = 66802, + [SMALL_STATE(2382)] = 66810, + [SMALL_STATE(2383)] = 66818, + [SMALL_STATE(2384)] = 66826, + [SMALL_STATE(2385)] = 66834, + [SMALL_STATE(2386)] = 66842, + [SMALL_STATE(2387)] = 66850, + [SMALL_STATE(2388)] = 66858, + [SMALL_STATE(2389)] = 66866, + [SMALL_STATE(2390)] = 66874, + [SMALL_STATE(2391)] = 66882, + [SMALL_STATE(2392)] = 66890, + [SMALL_STATE(2393)] = 66898, + [SMALL_STATE(2394)] = 66906, + [SMALL_STATE(2395)] = 66914, + [SMALL_STATE(2396)] = 66922, + [SMALL_STATE(2397)] = 66930, + [SMALL_STATE(2398)] = 66938, + [SMALL_STATE(2399)] = 66946, + [SMALL_STATE(2400)] = 66954, + [SMALL_STATE(2401)] = 66962, + [SMALL_STATE(2402)] = 66970, + [SMALL_STATE(2403)] = 66978, + [SMALL_STATE(2404)] = 66986, + [SMALL_STATE(2405)] = 66994, + [SMALL_STATE(2406)] = 67002, + [SMALL_STATE(2407)] = 67010, + [SMALL_STATE(2408)] = 67018, + [SMALL_STATE(2409)] = 67026, + [SMALL_STATE(2410)] = 67034, + [SMALL_STATE(2411)] = 67042, + [SMALL_STATE(2412)] = 67050, + [SMALL_STATE(2413)] = 67058, + [SMALL_STATE(2414)] = 67066, + [SMALL_STATE(2415)] = 67074, + [SMALL_STATE(2416)] = 67082, + [SMALL_STATE(2417)] = 67090, + [SMALL_STATE(2418)] = 67098, + [SMALL_STATE(2419)] = 67106, + [SMALL_STATE(2420)] = 67114, + [SMALL_STATE(2421)] = 67122, + [SMALL_STATE(2422)] = 67130, + [SMALL_STATE(2423)] = 67138, + [SMALL_STATE(2424)] = 67146, + [SMALL_STATE(2425)] = 67154, + [SMALL_STATE(2426)] = 67162, + [SMALL_STATE(2427)] = 67170, + [SMALL_STATE(2428)] = 67178, + [SMALL_STATE(2429)] = 67186, + [SMALL_STATE(2430)] = 67194, + [SMALL_STATE(2431)] = 67202, + [SMALL_STATE(2432)] = 67210, + [SMALL_STATE(2433)] = 67218, + [SMALL_STATE(2434)] = 67226, + [SMALL_STATE(2435)] = 67234, + [SMALL_STATE(2436)] = 67242, + [SMALL_STATE(2437)] = 67250, + [SMALL_STATE(2438)] = 67258, + [SMALL_STATE(2439)] = 67266, + [SMALL_STATE(2440)] = 67274, + [SMALL_STATE(2441)] = 67282, + [SMALL_STATE(2442)] = 67290, + [SMALL_STATE(2443)] = 67298, + [SMALL_STATE(2444)] = 67306, + [SMALL_STATE(2445)] = 67314, + [SMALL_STATE(2446)] = 67322, + [SMALL_STATE(2447)] = 67330, + [SMALL_STATE(2448)] = 67338, + [SMALL_STATE(2449)] = 67346, + [SMALL_STATE(2450)] = 67354, + [SMALL_STATE(2451)] = 67362, + [SMALL_STATE(2452)] = 67370, + [SMALL_STATE(2453)] = 67378, + [SMALL_STATE(2454)] = 67386, + [SMALL_STATE(2455)] = 67394, + [SMALL_STATE(2456)] = 67402, + [SMALL_STATE(2457)] = 67410, + [SMALL_STATE(2458)] = 67418, + [SMALL_STATE(2459)] = 67426, + [SMALL_STATE(2460)] = 67434, + [SMALL_STATE(2461)] = 67442, + [SMALL_STATE(2462)] = 67450, + [SMALL_STATE(2463)] = 67458, + [SMALL_STATE(2464)] = 67466, + [SMALL_STATE(2465)] = 67474, + [SMALL_STATE(2466)] = 67482, + [SMALL_STATE(2467)] = 67490, + [SMALL_STATE(2468)] = 67498, + [SMALL_STATE(2469)] = 67506, + [SMALL_STATE(2470)] = 67514, + [SMALL_STATE(2471)] = 67522, + [SMALL_STATE(2472)] = 67530, + [SMALL_STATE(2473)] = 67538, + [SMALL_STATE(2474)] = 67546, + [SMALL_STATE(2475)] = 67554, + [SMALL_STATE(2476)] = 67562, + [SMALL_STATE(2477)] = 67570, + [SMALL_STATE(2478)] = 67578, + [SMALL_STATE(2479)] = 67586, + [SMALL_STATE(2480)] = 67594, + [SMALL_STATE(2481)] = 67602, + [SMALL_STATE(2482)] = 67610, + [SMALL_STATE(2483)] = 67618, + [SMALL_STATE(2484)] = 67626, + [SMALL_STATE(2485)] = 67634, + [SMALL_STATE(2486)] = 67642, + [SMALL_STATE(2487)] = 67650, + [SMALL_STATE(2488)] = 67658, + [SMALL_STATE(2489)] = 67666, + [SMALL_STATE(2490)] = 67674, + [SMALL_STATE(2491)] = 67682, + [SMALL_STATE(2492)] = 67690, + [SMALL_STATE(2493)] = 67698, + [SMALL_STATE(2494)] = 67706, + [SMALL_STATE(2495)] = 67714, + [SMALL_STATE(2496)] = 67722, + [SMALL_STATE(2497)] = 67730, + [SMALL_STATE(2498)] = 67738, + [SMALL_STATE(2499)] = 67746, + [SMALL_STATE(2500)] = 67754, + [SMALL_STATE(2501)] = 67762, + [SMALL_STATE(2502)] = 67770, + [SMALL_STATE(2503)] = 67778, + [SMALL_STATE(2504)] = 67786, + [SMALL_STATE(2505)] = 67794, + [SMALL_STATE(2506)] = 67802, + [SMALL_STATE(2507)] = 67810, + [SMALL_STATE(2508)] = 67818, + [SMALL_STATE(2509)] = 67826, + [SMALL_STATE(2510)] = 67834, + [SMALL_STATE(2511)] = 67842, + [SMALL_STATE(2512)] = 67850, + [SMALL_STATE(2513)] = 67858, + [SMALL_STATE(2514)] = 67866, + [SMALL_STATE(2515)] = 67874, + [SMALL_STATE(2516)] = 67882, + [SMALL_STATE(2517)] = 67890, + [SMALL_STATE(2518)] = 67898, + [SMALL_STATE(2519)] = 67906, + [SMALL_STATE(2520)] = 67914, + [SMALL_STATE(2521)] = 67922, + [SMALL_STATE(2522)] = 67930, + [SMALL_STATE(2523)] = 67938, + [SMALL_STATE(2524)] = 67946, + [SMALL_STATE(2525)] = 67954, + [SMALL_STATE(2526)] = 67962, + [SMALL_STATE(2527)] = 67970, + [SMALL_STATE(2528)] = 67978, + [SMALL_STATE(2529)] = 67986, + [SMALL_STATE(2530)] = 67994, + [SMALL_STATE(2531)] = 68002, + [SMALL_STATE(2532)] = 68010, + [SMALL_STATE(2533)] = 68018, + [SMALL_STATE(2534)] = 68026, + [SMALL_STATE(2535)] = 68034, + [SMALL_STATE(2536)] = 68042, + [SMALL_STATE(2537)] = 68050, + [SMALL_STATE(2538)] = 68058, + [SMALL_STATE(2539)] = 68066, + [SMALL_STATE(2540)] = 68074, + [SMALL_STATE(2541)] = 68082, + [SMALL_STATE(2542)] = 68090, + [SMALL_STATE(2543)] = 68098, + [SMALL_STATE(2544)] = 68106, + [SMALL_STATE(2545)] = 68114, + [SMALL_STATE(2546)] = 68122, + [SMALL_STATE(2547)] = 68130, + [SMALL_STATE(2548)] = 68138, + [SMALL_STATE(2549)] = 68146, + [SMALL_STATE(2550)] = 68154, + [SMALL_STATE(2551)] = 68162, + [SMALL_STATE(2552)] = 68170, + [SMALL_STATE(2553)] = 68178, + [SMALL_STATE(2554)] = 68186, + [SMALL_STATE(2555)] = 68194, + [SMALL_STATE(2556)] = 68202, + [SMALL_STATE(2557)] = 68210, + [SMALL_STATE(2558)] = 68218, + [SMALL_STATE(2559)] = 68226, + [SMALL_STATE(2560)] = 68234, + [SMALL_STATE(2561)] = 68242, + [SMALL_STATE(2562)] = 68250, + [SMALL_STATE(2563)] = 68258, + [SMALL_STATE(2564)] = 68266, + [SMALL_STATE(2565)] = 68274, + [SMALL_STATE(2566)] = 68282, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -127113,2674 +128612,2717 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1130), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(258), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1911), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(38), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), - [120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(84), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1028), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2543), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1491), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1526), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(763), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(752), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2540), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2130), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(584), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(623), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(578), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2131), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(129), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2536), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1334), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1866), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2526), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2523), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2477), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1154), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1480), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1298), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(65), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2204), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1434), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(614), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2466), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(53), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(551), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2217), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1764), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1039), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1042), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2461), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1338), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1042), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1150), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(266), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1966), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(93), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1130), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2566), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1540), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1544), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(781), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(768), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2563), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2159), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(632), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(62), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(634), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(597), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2161), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(161), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2559), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1354), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2093), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2549), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2546), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2500), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1171), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1496), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1318), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2231), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1472), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(641), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2489), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(578), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2233), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1074), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1838), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1046), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1045), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2484), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1366), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1045), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(756), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(38), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(4), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(84), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1028), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2543), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1898), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2235), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(763), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(790), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(602), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(54), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2282), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(180), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2237), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(57), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(614), - [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2466), - [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(53), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(551), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2217), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1070), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1764), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1039), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1042), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2461), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1042), - [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(778), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(10), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(93), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1130), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2566), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1921), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2244), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(781), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(798), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(624), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(51), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2258), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(172), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2248), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(58), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(641), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2489), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(64), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(578), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2233), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1074), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1838), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1046), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1045), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2484), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1045), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(251), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(482), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(492), - [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(493), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2439), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(556), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1794), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(554), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(542), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2164), - [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(802), - [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1884), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2416), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1549), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1592), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1555), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2324), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2196), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(621), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(595), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2329), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1334), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1867), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2330), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2331), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2332), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1906), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1550), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1302), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2195), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1473), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(614), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2349), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2339), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1339), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2339), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(249), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(484), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(485), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(486), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2423), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(569), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1878), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(572), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(556), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2271), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(996), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1953), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2439), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1575), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1602), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1581), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2347), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2228), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(643), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(620), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2352), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1354), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2062), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2353), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2354), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2355), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1914), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1582), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1321), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2227), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1485), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(641), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2461), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1361), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(527), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(525), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(524), - [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2524), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(556), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1794), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(554), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1408), - [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(549), - [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(548), - [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1366), - [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2289), - [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1781), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2442), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(586), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(614), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2430), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1451), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(592), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(588), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1441), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2246), - [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1375), - [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1845), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1367), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1910), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1910), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(492), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(544), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(543), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(541), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(492), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(596), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1836), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(594), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(493), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(542), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(537), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(520), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2547), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(569), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1878), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(572), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(493), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1428), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(560), + [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(577), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1373), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2253), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1783), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2465), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(628), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(641), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2452), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1473), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(616), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(612), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1490), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2268), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1421), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1832), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1387), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1922), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1922), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2442), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2485), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1552), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1554), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(495), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(575), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1358), - [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(191), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1149), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(593), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1852), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1179), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(570), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1538), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), - [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(544), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(91), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(680), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2228), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(245), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1558), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1653), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2465), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2508), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(495), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), + [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(585), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1576), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1553), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1374), + [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(191), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(610), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1170), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1849), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1585), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1319), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1559), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(698), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1569), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1672), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(246), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2169), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), + [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(555), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(126), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1186), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1587), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1531), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1300), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [5026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1560), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5401] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), + [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), + [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(592), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5493] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), }; #ifdef __cplusplus